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