Launcher/ServerWrapper/build.gradle

44 lines
1 KiB
Groovy
Raw Normal View History

apply plugin: 'com.github.johnrengelman.shadow'
2018-09-25 16:21:08 +03:00
String mainClassName = "ru.gravit.launcher.server.ServerWrapper"
String mainAgentName = "ru.gravit.launcher.server.ServerAgent"
configurations {
2019-05-15 14:11:22 +03:00
pack
compile.extendsFrom pack
}
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 {
pack project(':LauncherAuthlib')
2019-05-15 14:11:22 +03:00
pack 'org.apache.httpcomponents:httpclient:4.5.7'
pack 'io.netty:netty-codec-http:4.1.36.Final'
2018-09-25 16:21:08 +03:00
}
shadowJar {
2019-05-15 14:11:22 +03:00
classifier = null
relocate 'io.netty', 'ru.gravit.repackage.io.netty'
configurations = [project.configurations.pack]
exclude 'module-info.class'
}
build.dependsOn tasks.shadowJar