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

mainClassName = "com.skcraft.launcher.FancyLauncher"

repositories {
    maven {
        name = 'obw maven'
        url = 'https://maven.offbeatwit.ch/repository/snapshots'
    }
}

dependencies {
    compile project(':launcher')
    compile 'io.github.cottonmc.insubstantial:substance:7.3.1-SNAPSHOT'
}

shadowJar {
}

build.dependsOn(shadowJar)