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

28 lines
507 B
Groovy
Raw Normal View History

plugins {
id "com.github.johnrengelman.shadow"
id 'io.franzbecker.gradle-lombok'
}
2015-02-19 23:30:09 +01:00
jar {
manifest {
attributes("Main-Class": "com.skcraft.launcher.Bootstrap")
}
}
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)