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
sk89q 5b6681b8ea Switch to Gradle. Use git log --follow for history.
This converts the project into a multi-module Gradle build.

By default, Git does not show history past a rename, so use git log
--follow to see further history.
2015-02-18 21:30:25 -08:00

21 lines
419 B
Groovy

apply plugin: 'com.github.johnrengelman.shadow'
jar {
manifest {
attributes("Main-Class": "com.skcraft.launcher.builder.PackageBuilder")
}
}
dependencies {
compile project(':launcher')
compile 'org.tukaani:xz:1.0'
compile 'org.apache.commons:commons-compress:1.9'
}
shadowJar {
dependencies {
exclude(dependency('org.projectlombok:lombok'))
}
}
build.dependsOn(shadowJar)