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