Files
hamster-ball/ball-bukkit/build.gradle.kts
2023-10-29 21:01:36 +08:00

27 lines
640 B
Plaintext

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