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

19 lines
300 B
Groovy
Raw Normal View History

plugins {
id "com.github.johnrengelman.shadow"
}
jar {
manifest {
attributes("Main-Class": "com.skcraft.launcher.FancyLauncher")
}
}
dependencies {
compile project(':launcher')
compile 'com.github.insubstantial:substance:7.3'
}
shadowJar {
}
build.dependsOn(shadowJar)