19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
@file:Suppress("VulnerableLibrariesLocal", "GradlePackageVersionRange", "GradlePackageUpdate")
|
|
|
|
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")
|
|
|
|
implementation("io.lettuce:lettuce-core:+") {
|
|
exclude(group = "io.netty")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterBall-Common"
|
|
}
|
|
}
|