mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
19 lines
346 B
Groovy
19 lines
346 B
Groovy
plugins {
|
|
id 'application'
|
|
id "com.github.johnrengelman.shadow"
|
|
id 'io.freefair.lombok'
|
|
}
|
|
|
|
mainClassName = "com.skcraft.launcher.builder.PackageBuilder"
|
|
|
|
dependencies {
|
|
compile project(':launcher')
|
|
compile 'org.tukaani:xz:1.0'
|
|
compile 'org.apache.commons:commons-compress:1.9'
|
|
}
|
|
|
|
shadowJar {
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|