oblak/examples/example-bukkit/build.gradle
2020-10-06 20:52:51 +02:00

23 lines
615 B
Groovy

apply plugin: "com.github.johnrengelman.shadow"
def adventureVersion = "4.0.0-SNAPSHOT"
shadowJar {
dependencies {
exclude(dependency("org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT"))
}
}
build.dependsOn(shadowJar)
dependencies {
/* Cloud */
implementation project(":cloud-paper")
implementation project(":cloud-annotations")
implementation project(":cloud-minecraft-extras")
/* Extras */
implementation "me.lucko:commodore:1.9"
implementation "net.kyori:adventure-platform-bukkit:$adventureVersion"
/* Bukkit */
compileOnly "org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT"
}