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.
34 lines
804 B
Groovy
34 lines
804 B
Groovy
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
jar {
|
|
manifest {
|
|
attributes("Main-Class": "com.skcraft.launcher.Launcher")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.projectlombok:lombok:1.12.2'
|
|
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.0'
|
|
compile 'commons-lang:commons-lang:2.6'
|
|
compile 'commons-io:commons-io:1.2'
|
|
compile 'com.google.guava:guava:15.0'
|
|
compile 'com.beust:jcommander:1.32'
|
|
compile 'org.tukaani:xz:1.0'
|
|
compile 'org.apache.commons:commons-compress:1.9'
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('**/*.properties') {
|
|
filter {
|
|
it.replace('${project.version}', project.version)
|
|
}
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
exclude(dependency('org.projectlombok:lombok'))
|
|
}
|
|
}
|
|
|
|
build.dependsOn(shadowJar) |