1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-27 12:46:22 +01:00
SKCraft-Launcher/launcher-fancy/build.gradle

23 lines
439 B
Groovy
Raw Normal View History

plugins {
id 'application'
id "com.github.johnrengelman.shadow"
}
mainClassName = "com.skcraft.launcher.FancyLauncher"
repositories {
maven {
name = 'cottonmc-maven'
url = 'https://server.bbkr.space/artifactory/libs-snapshot/'
}
}
dependencies {
compile project(':launcher')
compile 'io.github.cottonmc.insubstantial:substance:7.3.1-20190628.121938-1'
}
shadowJar {
}
build.dependsOn(shadowJar)