24 lines
484 B
Plaintext
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"
|
|
}
|
|
}
|