feat: 添加redission

This commit is contained in:
2023-08-07 17:16:39 +08:00
parent 3064452c05
commit 0768161203
10 changed files with 164 additions and 16 deletions

View File

@@ -34,8 +34,14 @@ dependencies {
exclude(group = "org.jetbrains")
}
//noinspection GradlePackageUpdate
implementation("com.zaxxer:HikariCP:${property("HikariCP_version")}") {
val hikariVersion = property("HikariCP_version")
implementation("com.zaxxer:HikariCP:${hikariVersion}") {
exclude(group = "org.slf4j")
}
val redissionVersion = property("redission_version")
implementation("org.redisson:redisson:${redissionVersion}") {
exclude(group = "io.netty")
exclude(group = "org.yaml")
exclude(group = "org.slf4j")
}
}