Files
hamster-core/core-common/build.gradle.kts
2024-01-13 01:31:49 +08:00

28 lines
738 B
Plaintext

@file:Suppress("VulnerableLibrariesLocal")
dependencies {
compileOnly("com.google.code.gson:gson:2.8.0")
implementation("net.kyori:adventure-platform-api:4.3.2") {
exclude(group = "org.jetbrains")
}
implementation("net.kyori:adventure-text-serializer-gson:4.13.1") {
exclude(group = "org.jetbrains")
exclude(group = "com.google.code.gson")
}
// https://mvnrepository.com/artifact/io.lettuce/lettuce-core
implementation("io.lettuce:lettuce-core:6.3.1.RELEASE") {
exclude(group = "io.netty")
}
implementation("org.quartz-scheduler:quartz:2.3.2") {
isTransitive = false
}
}
tasks {
withType<Jar> {
archiveBaseName = "HamsterCore-Common"
}
}