mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
5b6681b8ea
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.
21 lines
419 B
Groovy
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) |