mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
44 lines
No EOL
994 B
Groovy
44 lines
No EOL
994 B
Groovy
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
String mainClassName = "ru.gravit.launcher.server.ServerWrapper"
|
|
String mainAgentName = "ru.gravit.launcher.server.ServerAgent"
|
|
|
|
configurations {
|
|
pack
|
|
compile.extendsFrom pack
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "http://repo.spring.io/plugins-release/"
|
|
}
|
|
}
|
|
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
|
|
jar {
|
|
classifier = 'clean'
|
|
manifest.attributes("Main-Class": mainClassName,
|
|
"Premain-Class": mainAgentName,
|
|
"Can-Redefine-Classes": "true",
|
|
"Can-Retransform-Classes": "true",
|
|
"Can-Set-Native-Method-Prefix": "true")
|
|
}
|
|
|
|
dependencies {
|
|
pack project(':LauncherAuthlib')
|
|
pack 'org.apache.httpcomponents:httpclient:4.5.7'
|
|
pack 'io.netty:netty-all:4.1.32.Final'
|
|
}
|
|
|
|
shadowJar {
|
|
classifier = null
|
|
relocate 'io.netty', 'ru.gravit.repackage.io.netty'
|
|
configurations = [project.configurations.pack]
|
|
exclude 'module-info.class'
|
|
}
|
|
|
|
|
|
build.dependsOn tasks.shadowJar
|
|
|