24 lines
555 B
Plaintext
24 lines
555 B
Plaintext
@file:Suppress("VulnerableLibrariesLocal")
|
|
|
|
evaluationDependsOn(":ball-common")
|
|
|
|
dependencies {
|
|
api(project(":ball-common")) { isTransitive = false }
|
|
compileOnly("net.md-5:bungeecord-api:1.20-R0.1")
|
|
compileOnly("cn.hamster3.mc.plugin:core-bungee:+")
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("bungee.yml") {
|
|
expand(project.properties)
|
|
}
|
|
}
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterBall-BungeeCord"
|
|
}
|
|
shadowJar {
|
|
destinationDirectory = rootProject.layout.buildDirectory
|
|
}
|
|
}
|