Files
hamster-core/core-common/build.gradle.kts
2023-10-13 17:08:02 +08:00

24 lines
484 B
Plaintext

@file:Suppress("VulnerableLibrariesLocal")
plugins {
id("java-library")
}
dependencies {
compileOnly("com.google.code.gson:gson:2.8.0")
api("net.kyori:adventure-platform-api:4+") {
exclude(group = "org.jetbrains")
}
api("net.kyori:adventure-text-serializer-gson:4.13+") {
exclude(group = "org.jetbrains")
exclude(group = "com.google.code.gson")
}
}
tasks {
withType<Jar> {
archiveBaseName = "HamsterCore-Common"
}
}