mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-27 12:46:22 +01:00
21 lines
401 B
Groovy
21 lines
401 B
Groovy
|
apply plugin: 'com.github.johnrengelman.shadow'
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':launcher-builder')
|
||
|
compile 'org.eclipse.jetty:jetty-server:9.3.1.v20150714'
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes("Main-Class": "com.skcraft.launcher.buildtools.BuildTools")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
shadowJar {
|
||
|
dependencies {
|
||
|
exclude(dependency('org.projectlombok:lombok'))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
build.dependsOn(shadowJar)
|