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"
|
|
|
|
id 'io.franzbecker.gradle-lombok'
|
|
|
|
}
|
2015-02-19 23:30:09 +01:00
|
|
|
|
2020-12-22 23:01:15 +01:00
|
|
|
mainClassName = "com.skcraft.launcher.Bootstrap"
|
2015-02-19 23:30:09 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile 'com.googlecode.json-simple:json-simple:1.1.1'
|
2018-07-15 04:09:40 +02:00
|
|
|
compile 'javax.xml.bind:jaxb-api:2.3.0'
|
2015-02-19 23:30:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
filesMatching('**/*.properties') {
|
|
|
|
filter {
|
|
|
|
it.replace('${project.version}', project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|