26 lines
612 B
Plaintext
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"
|
|
}
|
|
}
|