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
|
|
|
|
2022-04-26 23:42:15 +02:00
|
|
|
application {
|
|
|
|
mainClassName = "com.skcraft.launcher.creator.Creator"
|
|
|
|
}
|
2021-02-05 05:05:48 +01:00
|
|
|
|
2015-07-21 00:03:15 +02:00
|
|
|
dependencies {
|
2022-08-28 01:37:36 +02:00
|
|
|
implementation project(path: ':launcher-builder')
|
2022-04-26 23:42:15 +02:00
|
|
|
implementation 'org.eclipse.jetty:jetty-server:9.3.1.v20150714'
|
|
|
|
implementation 'com.jidesoft:jide-oss:3.6.18'
|
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 {
|
2022-04-27 02:53:14 +02:00
|
|
|
archiveClassifier.set("")
|
2015-07-21 00:03:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-26 23:42:15 +02:00
|
|
|
build {
|
|
|
|
dependsOn(shadowJar)
|
|
|
|
}
|