25 lines
665 B
Plaintext
25 lines
665 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:+")
|
|
// https://mvnrepository.com/artifact/io.lettuce/lettuce-core
|
|
implementation("io.lettuce:lettuce-core:6.2.6.RELEASE") {
|
|
exclude(group = "io.netty")
|
|
// exclude(group = "io.projectreactor", module = "reactor-core")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("bungee.yml") {
|
|
expand(project.properties)
|
|
}
|
|
}
|
|
withType<Jar>() {
|
|
archiveBaseName = "HamsterBall-BungeeCord"
|
|
}
|
|
}
|