oblak/examples/example-bukkit/build.gradle.kts

26 lines
667 B
Kotlin

plugins {
id("com.github.johnrengelman.shadow")
}
tasks {
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", Versions.commodore)
implementation("net.kyori", "adventure-platform-bukkit", Versions.adventurePlatform)
/* Bukkit */
compileOnly("org.bukkit", "bukkit", Versions.bukkit)
}