feat: 添加 lettuce API
This commit is contained in:
@@ -1,23 +1,30 @@
|
||||
@file:Suppress("GradlePackageVersionRange", "GradlePackageUpdate")
|
||||
@file:Suppress("VulnerableLibrariesLocal")
|
||||
|
||||
evaluationDependsOn(":core-common")
|
||||
|
||||
dependencies {
|
||||
implementation(project(":core-common")) { isTransitive = false }
|
||||
compileOnly("net.md-5:bungeecord-api:+")
|
||||
implementation(project(":core-common")) {
|
||||
isTransitive = false
|
||||
}
|
||||
compileOnly("net.md-5:bungeecord-api:1.20-R0.1")
|
||||
|
||||
implementation("net.kyori:adventure-platform-bungeecord:4+") {
|
||||
implementation("net.kyori:adventure-platform-bungeecord:4.3.2") {
|
||||
exclude(group = "org.jetbrains")
|
||||
exclude(group = "com.google.code.gson")
|
||||
}
|
||||
implementation("net.kyori:adventure-text-minimessage:4+") {
|
||||
implementation("net.kyori:adventure-text-minimessage:4.15.0") {
|
||||
exclude(module = "adventure-api")
|
||||
exclude(group = "org.jetbrains")
|
||||
}
|
||||
|
||||
implementation("com.zaxxer:HikariCP:4.0.3") {
|
||||
exclude(group = "org.slf4j")
|
||||
}
|
||||
implementation("org.quartz-scheduler:quartz:2.3.2") { isTransitive = false }
|
||||
// https://mvnrepository.com/artifact/io.lettuce/lettuce-core
|
||||
implementation("io.lettuce:lettuce-core:6.3.1.RELEASE")
|
||||
implementation("org.quartz-scheduler:quartz:2.3.2") {
|
||||
isTransitive = false
|
||||
}
|
||||
}
|
||||
|
||||
tasks {
|
||||
|
Reference in New Issue
Block a user