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