Newer
Older
sklauncher / launcher-fancy / build.gradle
plugins {
    id 'application'
    id "com.github.johnrengelman.shadow"
}

mainClassName = "com.skcraft.launcher.FancyLauncher"

dependencies {
    compile project(':launcher')
    compile 'com.github.insubstantial:substance:7.3'
}

shadowJar {
}

build.dependsOn(shadowJar)