mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
26 lines
472 B
Groovy
26 lines
472 B
Groovy
plugins {
|
|
id 'application'
|
|
id "com.github.johnrengelman.shadow"
|
|
id 'io.freefair.lombok'
|
|
}
|
|
|
|
mainClassName = "com.skcraft.launcher.Bootstrap"
|
|
|
|
dependencies {
|
|
compile 'com.googlecode.json-simple:json-simple:1.1.1'
|
|
compile 'javax.xml.bind:jaxb-api:2.3.0'
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('**/*.properties') {
|
|
filter {
|
|
it.replace('${project.version}', project.version)
|
|
}
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|