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

23 lines
421 B
Groovy
Raw Normal View History

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)