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

30 lines
553 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(path: ':launcher', configuration: 'shadow')
implementation 'io.github.cottonmc.insubstantial:substance:7.3.1-SNAPSHOT'
}
shadowJar {
archiveClassifier.set("")
}
build {
dependsOn(shadowJar)
}