Files
hamster-ball/ball-bukkit/build.gradle.kts
2023-10-12 15:02:48 +08:00

26 lines
612 B
Plaintext

evaluationDependsOn(":ball-common")
dependencies {
api(project(":ball-common")) { isTransitive = false }
compileOnly("org.spigotmc:spigot-api:+")
compileOnly("cn.hamster3.mc.plugin:core-bukkit:+")
compileOnly("me.clip:placeholderapi:+") { isTransitive = false }
implementation("org.redisson:redisson:+") {
exclude(group = "io.netty")
exclude(group = "org.slf4j")
}
}
tasks {
processResources {
filesMatching("plugin.yml") {
expand(project.properties)
}
}
withType<Jar>() {
archiveBaseName = "HamsterBall-Bukkit"
}
}