1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-24 12:16:28 +01:00
SKCraft-Launcher/launcher-builder/build.gradle

24 lines
397 B
Groovy
Raw Normal View History

plugins {
id 'application'
2022-04-26 23:42:15 +02:00
id 'java-library'
id "com.github.johnrengelman.shadow"
id 'io.freefair.lombok'
}
2022-04-26 23:42:15 +02:00
application {
mainClassName = "com.skcraft.launcher.builder.PackageBuilder"
}
dependencies {
2022-04-26 23:42:15 +02:00
api project(':launcher')
implementation 'org.apache.commons:commons-compress:1.21'
}
shadowJar {
archiveClassifier.set("")
}
2022-04-26 23:42:15 +02:00
build {
dependsOn(shadowJar)
}