mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
20 lines
376 B
Groovy
20 lines
376 B
Groovy
|
apply plugin: 'com.github.johnrengelman.shadow'
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes("Main-Class": "com.skcraft.launcher.FancyLauncher")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':launcher')
|
||
|
compile 'com.github.insubstantial:substance:7.3'
|
||
|
}
|
||
|
|
||
|
shadowJar {
|
||
|
dependencies {
|
||
|
exclude(dependency('org.projectlombok:lombok'))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
build.dependsOn(shadowJar)
|