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

32 lines
738 B
Groovy
Raw Normal View History

plugins {
id 'application'
id "com.github.johnrengelman.shadow"
id 'io.freefair.lombok'
}
mainClassName = "com.skcraft.launcher.Launcher"
dependencies {
compile 'javax.xml.bind:jaxb-api:2.2.4'
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.0'
compile 'commons-lang:commons-lang:2.6'
compile 'commons-io:commons-io:1.2'
compile 'com.google.guava:guava:15.0'
compile 'com.beust:jcommander:1.32'
compile 'com.miglayout:miglayout:3.7.4'
2015-07-28 04:56:53 +02:00
compile 'com.google.code.findbugs:jsr305:3.0.0'
}
processResources {
filesMatching('**/*.properties') {
filter {
it.replace('${project.version}', project.version)
}
}
}
shadowJar {
}
2015-07-28 04:56:53 +02:00
build.dependsOn(shadowJar)