Files
hamster-ball/ball-common/build.gradle.kts
2023-10-12 15:02:48 +08:00

22 lines
491 B
Plaintext

@file:Suppress("VulnerableLibrariesLocal")
dependencies {
compileOnly("cn.hamster3.mc.plugin:core-common:+")
compileOnly("io.netty:netty-buffer:4+")
compileOnly("com.google.code.gson:gson:2.8.0")
implementation("org.redisson:redisson:+") {
isTransitive = false
exclude(group = "io.netty")
exclude(group = "org.yaml")
exclude(group = "org.slf4j")
}
}
tasks {
withType<Jar>() {
archiveBaseName = "HamsterBall-Common"
}
}