Skip to content

Commit d19920a

Browse files
committed
Upgrade to Cassandra Driver 4.4.0
Closes gh-20064
1 parent fe325c0 commit d19920a

File tree

2 files changed

+8
-4
lines changed
  • spring-boot-project

2 files changed

+8
-4
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,13 @@ bom {
159159
]
160160
}
161161
}
162-
library("Cassandra Driver", "4.3.1") {
162+
library("Cassandra Driver", "4.4.0") {
163163
group("com.datastax.oss") {
164164
modules = [
165-
"java-driver-core",
166-
"java-driver-query-builder"
165+
"java-driver-core" {
166+
exclude group: "org.slf4j", module: "jcl-over-slf4j"
167+
},
168+
"java-drive-query-builder"
167169
]
168170
}
169171
}

spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@ dependencies {
88
api(platform(project(":spring-boot-project:spring-boot-dependencies")))
99
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
1010
api("org.springframework:spring-tx")
11-
api("org.springframework.data:spring-data-cassandra")
11+
api("org.springframework.data:spring-data-cassandra") {
12+
exclude group: "org.slf4j", module: "jcl-over-slf4j"
13+
}
1214
}

0 commit comments

Comments
 (0)