2018-07-15 04:09:40 +02:00
|
|
|
plugins {
|
2020-12-22 23:01:15 +01:00
|
|
|
id 'application'
|
2018-07-15 04:09:40 +02:00
|
|
|
id "com.github.johnrengelman.shadow"
|
|
|
|
}
|
2015-02-19 12:13:07 +01:00
|
|
|
|
2020-12-22 23:01:15 +01:00
|
|
|
mainClassName = "com.skcraft.launcher.FancyLauncher"
|
2015-02-19 12:13:07 +01:00
|
|
|
|
2020-12-22 23:51:14 +01:00
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = 'cottonmc-maven'
|
|
|
|
url = 'https://server.bbkr.space/artifactory/libs-snapshot/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-19 12:13:07 +01:00
|
|
|
dependencies {
|
|
|
|
compile project(':launcher')
|
2020-12-22 23:51:14 +01:00
|
|
|
compile 'io.github.cottonmc.insubstantial:substance:7.3.1-20190628.121938-1'
|
2015-02-19 12:13:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|