29 lines
980 B
Plaintext
29 lines
980 B
Plaintext
@file:Suppress("VulnerableLibrariesLocal")
|
|
|
|
dependencies {
|
|
compileOnly("com.google.code.gson:gson:2.8.0")
|
|
// https://mvnrepository.com/artifact/org.yaml/snakeyaml
|
|
compileOnly("org.yaml:snakeyaml:1.19")
|
|
|
|
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/com.zaxxer/HikariCP
|
|
compileOnly("com.zaxxer:HikariCP:4.0.3") { isTransitive = false }
|
|
// https://mvnrepository.com/artifact/redis.clients/jedis
|
|
implementation("redis.clients:jedis:5.1.2") {
|
|
exclude(group = "com.google.code.gson")
|
|
exclude(group = "org.slf4j")
|
|
}
|
|
compileOnly("org.quartz-scheduler:quartz:2.3.2") { isTransitive = false }
|
|
}
|
|
|
|
tasks {
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterCore-Common"
|
|
}
|
|
}
|