Newer
Older
sklauncher / launcher-fancy / build.gradle
@Henry Le Grys Henry Le Grys on 22 Dec 2020 279 bytes Update Substance to fix fancy launcher on Java 9+
plugins {
    id 'application'
    id "com.github.johnrengelman.shadow"
}

mainClassName = "com.skcraft.launcher.FancyLauncher"

dependencies {
    compile project(':launcher')
    compile 'org.pushing-pixels:radiance-substance:3.5.1'
}

shadowJar {
}

build.dependsOn(shadowJar)