mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
24 lines
397 B
Groovy
24 lines
397 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'java-library'
|
|
id "com.github.johnrengelman.shadow"
|
|
id 'io.freefair.lombok'
|
|
}
|
|
|
|
application {
|
|
mainClassName = "com.skcraft.launcher.builder.PackageBuilder"
|
|
}
|
|
|
|
dependencies {
|
|
api project(':launcher')
|
|
implementation 'org.apache.commons:commons-compress:1.21'
|
|
}
|
|
|
|
shadowJar {
|
|
archiveClassifier.set("")
|
|
}
|
|
|
|
build {
|
|
dependsOn(shadowJar)
|
|
}
|