2018-07-15 04:09:40 +02:00
|
|
|
plugins {
|
2020-12-22 23:01:15 +01:00
|
|
|
id 'application'
|
2018-07-15 04:09:40 +02:00
|
|
|
id "com.github.johnrengelman.shadow"
|
2021-02-05 05:05:48 +01:00
|
|
|
id 'io.freefair.lombok'
|
2018-07-15 04:09:40 +02:00
|
|
|
}
|
2015-07-21 00:03:15 +02:00
|
|
|
|
2021-01-25 19:39:48 +01:00
|
|
|
version = "2.1.0-SNAPSHOT"
|
2015-07-24 08:46:18 +02:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
2021-02-05 05:05:48 +01:00
|
|
|
mainClassName = "com.skcraft.launcher.creator.Creator"
|
|
|
|
|
2015-07-21 00:03:15 +02:00
|
|
|
dependencies {
|
|
|
|
compile project(':launcher-builder')
|
|
|
|
compile 'org.eclipse.jetty:jetty-server:9.3.1.v20150714'
|
2015-07-27 05:35:11 +02:00
|
|
|
compile 'com.jidesoft:jide-oss:3.6.10'
|
2015-07-21 00:03:15 +02:00
|
|
|
}
|
|
|
|
|
2015-07-24 08:46:18 +02:00
|
|
|
processResources {
|
|
|
|
filesMatching('**/*.properties') {
|
|
|
|
filter {
|
|
|
|
it.replace('${project.version}', project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 00:03:15 +02:00
|
|
|
shadowJar {
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|