1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-24 12:16:28 +01:00
SKCraft-Launcher/launcher-bootstrap/build.gradle

25 lines
481 B
Groovy
Raw Normal View History

plugins {
id 'application'
id "com.github.johnrengelman.shadow"
id 'io.franzbecker.gradle-lombok'
}
2015-02-19 23:30:09 +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'
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)