Newer
Older
sklauncher / launcher-bootstrap / build.gradle
@Henry Le Grys Henry Le Grys on 27 Apr 2022 514 bytes Upgrade dependencies & fix deprecations
plugins {
    id 'application'
    id "com.github.johnrengelman.shadow"
    id 'io.freefair.lombok'
}

application {
    mainClassName = "com.skcraft.launcher.Bootstrap"
}

dependencies {
    implementation 'com.googlecode.json-simple:json-simple:1.1.1'
    implementation 'javax.xml.bind:jaxb-api:2.3.1'
}

processResources {
    filesMatching('**/*.properties') {
        filter {
            it.replace('${project.version}', project.version)
        }
    }
}

shadowJar {
}

build {
    dependsOn(shadowJar)
}