27 lines
639 B
Plaintext
27 lines
639 B
Plaintext
evaluationDependsOn(":ball-common")
|
|
|
|
dependencies {
|
|
api(project(":ball-common")) { isTransitive = false }
|
|
compileOnly("net.md-5:bungeecord-api:+")
|
|
|
|
compileOnly("cn.hamster3.mc.plugin:core-bungeecord:+")
|
|
|
|
implementation("org.redisson:redisson:+") {
|
|
exclude(group = "io.netty")
|
|
exclude(group = "org.yaml")
|
|
exclude(group = "org.slf4j")
|
|
}
|
|
implementation("io.netty:netty-resolver-dns:+")
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("bungee.yml") {
|
|
expand(project.properties)
|
|
}
|
|
}
|
|
withType<Jar>() {
|
|
archiveBaseName = "HamsterBall-BungeeCord"
|
|
}
|
|
}
|