20 lines
448 B
Plaintext
20 lines
448 B
Plaintext
@file:Suppress("VulnerableLibrariesLocal")
|
|
|
|
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"
|
|
}
|
|
}
|