2018-07-15 04:09:40 +02:00
|
|
|
plugins {
|
2020-12-22 23:01:15 +01:00
|
|
|
id 'application'
|
2018-07-15 04:09:40 +02:00
|
|
|
id "com.github.johnrengelman.shadow"
|
2021-02-05 05:05:48 +01:00
|
|
|
id 'io.freefair.lombok'
|
2018-07-15 04:09:40 +02:00
|
|
|
}
|
2015-02-19 06:29:39 +01:00
|
|
|
|
2020-12-22 23:01:15 +01:00
|
|
|
mainClassName = "com.skcraft.launcher.Launcher"
|
2015-02-19 06:29:39 +01:00
|
|
|
|
|
|
|
dependencies {
|
2017-10-20 15:50:03 +02:00
|
|
|
compile 'javax.xml.bind:jaxb-api:2.2.4'
|
2015-02-19 06:29:39 +01:00
|
|
|
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'
|
2015-02-19 13:05:53 +01:00
|
|
|
compile 'com.miglayout:miglayout:3.7.4'
|
2015-07-28 04:56:53 +02:00
|
|
|
compile 'com.google.code.findbugs:jsr305:3.0.0'
|
2015-02-19 06:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
filesMatching('**/*.properties') {
|
|
|
|
filter {
|
|
|
|
it.replace('${project.version}', project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
}
|
|
|
|
|
2015-07-28 04:56:53 +02:00
|
|
|
build.dependsOn(shadowJar)
|