Files
hamster-ball/ball-common/build.gradle.kts
2024-03-18 10:13:15 +08:00

15 lines
303 B
Plaintext

@file:Suppress("VulnerableLibrariesLocal")
dependencies {
compileOnly("cn.hamster3.mc.plugin:core-common:+")
compileOnly("com.google.code.gson:gson:2.8.0")
compileOnly("com.google.guava:guava:31.0-jre")
}
tasks {
withType<Jar> {
archiveBaseName = "HamsterBall-Common"
}
}