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
2022-04-26 22:42:15 +01:00

29 lines
492 B
Groovy

plugins {
id 'application'
id "com.github.johnrengelman.shadow"
id 'io.freefair.lombok'
}
application {
mainClassName = "com.skcraft.launcher.FancyLauncher"
}
repositories {
maven {
name = 'obw maven'
url = 'https://maven.offbeatwit.ch/repository/snapshots'
}
}
dependencies {
implementation project(':launcher')
implementation 'io.github.cottonmc.insubstantial:substance:7.3.1-SNAPSHOT'
}
shadowJar {
}
build {
dependsOn(shadowJar)
}