mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
31 lines
600 B
Groovy
31 lines
600 B
Groovy
plugins {
|
|
id 'application'
|
|
id "com.github.johnrengelman.shadow"
|
|
id 'io.freefair.lombok'
|
|
}
|
|
|
|
version = "2.1.0-SNAPSHOT"
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
mainClassName = "com.skcraft.launcher.creator.Creator"
|
|
|
|
dependencies {
|
|
compile project(':launcher-builder')
|
|
compile 'org.eclipse.jetty:jetty-server:9.3.1.v20150714'
|
|
compile 'com.jidesoft:jide-oss:3.6.10'
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('**/*.properties') {
|
|
filter {
|
|
it.replace('${project.version}', project.version)
|
|
}
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|