Skip to content

Commit de150da

Browse files
committed
Upgrade Cassandra driver to 4.18.0 and change coordinates
Closes gh-39090
1 parent c944ee3 commit de150da

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
2424

2525
optional("ch.qos.logback:logback-classic")
26-
optional("com.datastax.oss:java-driver-core") {
26+
optional("org.apache.cassandra:java-driver-core") {
2727
exclude group: "org.slf4j", module: "jcl-over-slf4j"
2828
}
2929
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Spring Boot Actuator"
1111
dependencies {
1212
api(project(":spring-boot-project:spring-boot"))
1313

14-
optional("com.datastax.oss:java-driver-core") {
14+
optional("org.apache.cassandra:java-driver-core") {
1515
exclude group: "org.slf4j", module: "jcl-over-slf4j"
1616
}
1717
optional("com.fasterxml.jackson.core:jackson-databind")

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ bom {
211211
releaseNotes("https://github.com/ben-manes/caffeine/releases/tag/v{version}")
212212
}
213213
}
214-
library("Cassandra Driver", "4.17.0") {
215-
group("com.datastax.oss") {
214+
library("Cassandra Driver", "4.18.0") {
215+
group("org.apache.cassandra") {
216216
imports = [
217217
"java-driver-bom"
218218
]

spring-boot-project/spring-boot-tools/spring-boot-test-support/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Spring Boot Testing Support"
88
dependencies {
99
api(platform(project(path: ":spring-boot-project:spring-boot-parent")))
1010

11-
compileOnly("com.datastax.oss:java-driver-core") {
11+
compileOnly("org.apache.cassandra:java-driver-core") {
1212
exclude(group: "org.slf4j", module: "jcl-over-slf4j")
1313
}
1414
compileOnly("jakarta.servlet:jakarta.servlet-api")

0 commit comments

Comments
 (0)