2019-04-29 12:47:11 +03:00
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
|
2019-06-02 05:03:08 +03:00
|
|
|
String mainClassName = "pro.gravit.launcher.server.ServerWrapper"
|
|
|
|
String mainAgentName = "pro.gravit.launcher.server.ServerAgent"
|
2018-09-25 16:21:08 +03:00
|
|
|
|
2019-04-29 12:47:11 +03:00
|
|
|
configurations {
|
2019-05-15 14:11:22 +03:00
|
|
|
pack
|
|
|
|
compile.extendsFrom pack
|
2019-04-29 12:47:11 +03:00
|
|
|
}
|
2018-09-25 16:21:08 +03:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://repo.spring.io/plugins-release/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
|
|
|
|
jar {
|
2019-05-15 14:11:22 +03:00
|
|
|
classifier = 'clean'
|
2018-09-25 16:21:08 +03:00
|
|
|
manifest.attributes("Main-Class": mainClassName,
|
2019-04-03 16:27:40 +03:00
|
|
|
"Premain-Class": mainAgentName,
|
|
|
|
"Can-Redefine-Classes": "true",
|
|
|
|
"Can-Retransform-Classes": "true",
|
|
|
|
"Can-Set-Native-Method-Prefix": "true")
|
2018-09-25 16:21:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-05-03 16:27:48 +03:00
|
|
|
pack project(':LauncherAuthlib')
|
2019-05-15 14:11:22 +03:00
|
|
|
pack 'org.apache.httpcomponents:httpclient:4.5.7'
|
2019-05-31 01:51:02 +03:00
|
|
|
pack 'io.netty:netty-codec-http:4.1.36.Final'
|
2018-09-25 16:21:08 +03:00
|
|
|
}
|
2019-04-29 12:47:11 +03:00
|
|
|
|
|
|
|
shadowJar {
|
2019-05-15 14:11:22 +03:00
|
|
|
classifier = null
|
2019-06-02 05:08:35 +03:00
|
|
|
relocate 'io.netty', 'pro.gravit.repackage.io.netty'
|
2019-05-15 14:11:22 +03:00
|
|
|
configurations = [project.configurations.pack]
|
|
|
|
exclude 'module-info.class'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
build.dependsOn tasks.shadowJar
|
2019-04-29 12:47:11 +03:00
|
|
|
|