17 lines
378 B
Plaintext
17 lines
378 B
Plaintext
@file:Suppress("VulnerableLibrariesLocal")
|
|
|
|
dependencies {
|
|
compileOnly("cn.hamster3.mc.plugin:core-common:+")
|
|
|
|
compileOnly("com.google.code.gson:gson:2.8.0")
|
|
|
|
// https://mvnrepository.com/artifact/io.lettuce/lettuce-core
|
|
compileOnly("io.lettuce:lettuce-core:6.2.6.RELEASE")
|
|
}
|
|
|
|
tasks {
|
|
withType<Jar>() {
|
|
archiveBaseName = "HamsterBall-Common"
|
|
}
|
|
}
|