mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
ee272cbbc1
seems like server.bbkr.space went down, so I republished
23 lines
421 B
Groovy
23 lines
421 B
Groovy
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) |