1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-24 12:16:28 +01:00
SKCraft-Launcher/launcher-builder/build.gradle
2021-02-05 04:05:48 +00:00

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)