25 lines
674 B
Plaintext
25 lines
674 B
Plaintext
@file:Suppress("GradlePackageVersionRange")
|
|
|
|
evaluationDependsOn(":ball-common")
|
|
|
|
dependencies {
|
|
api(project(":ball-common")) { isTransitive = false }
|
|
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
|
|
|
|
compileOnly("cn.hamster3.mc.plugin:core-bukkit:+")
|
|
compileOnly("me.clip:placeholderapi:+") { isTransitive = false }
|
|
// https://mvnrepository.com/artifact/io.lettuce/lettuce-core
|
|
implementation("io.lettuce:lettuce-core:6.2.6.RELEASE")
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("plugin.yml") {
|
|
expand(project.properties)
|
|
}
|
|
}
|
|
withType<Jar>() {
|
|
archiveBaseName = "HamsterBall-Bukkit"
|
|
}
|
|
}
|