25 lines
617 B
Plaintext
25 lines
617 B
Plaintext
@file:Suppress("VulnerableLibrariesLocal", "GradlePackageUpdate", "GradlePackageVersionRange")
|
|
|
|
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")
|
|
}
|
|
implementation("org.quartz-scheduler:quartz:2.3.2") { isTransitive = false }
|
|
}
|
|
|
|
tasks {
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterCore-Common"
|
|
}
|
|
}
|