2018-09-19 15:03:52 +03:00
|
|
|
String mainClassName = "ru.gravit.launcher.LauncherEngine"
|
|
|
|
String mainAgentName = "ru.gravit.launcher.LauncherAgent"
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://repo.spring.io/plugins-release/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
|
|
|
|
jar {
|
|
|
|
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
|
|
manifest.attributes("Main-Class": mainClassName,
|
|
|
|
"Premain-Class": mainAgentName,
|
|
|
|
"Can-Redefine-Classes": "true",
|
|
|
|
"Can-Retransform-Classes": "true",
|
|
|
|
"Can-Set-Native-Method-Prefix": "true")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-09-25 16:21:08 +03:00
|
|
|
compile project(':LauncherAPI')
|
2018-09-26 18:08:48 +03:00
|
|
|
compile 'org.javassist:javassist:3.23.1-GA'
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
task genRuntimeJS(type: Zip) {
|
|
|
|
archiveName = "runtime.zip"
|
|
|
|
destinationDir = file("${buildDir}/tmp")
|
|
|
|
from "runtime/"
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn tasks.genRuntimeJS
|