Newer
Older
sklauncher / launcher-builder / build.gradle
@Henry Le Grys Henry Le Grys on 26 Apr 2022 406 bytes Upgrade to Gradle 7
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.tukaani:xz:1.0'
    implementation 'org.apache.commons:commons-compress:1.9'
}

shadowJar {
}

build {
    dependsOn(shadowJar)
}