From d19920ae39a2d2b42ca17bdedc339db1d05b3a8c Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 7 Feb 2020 16:17:27 +0100 Subject: [PATCH] Upgrade to Cassandra Driver 4.4.0 Closes gh-20064 --- spring-boot-project/spring-boot-dependencies/build.gradle | 8 +++++--- .../spring-boot-starter-data-cassandra/build.gradle | 4 +++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index eb6b00242f9..524d2d09c4a 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -159,11 +159,13 @@ bom { ] } } - library("Cassandra Driver", "4.3.1") { + library("Cassandra Driver", "4.4.0") { group("com.datastax.oss") { modules = [ - "java-driver-core", - "java-driver-query-builder" + "java-driver-core" { + exclude group: "org.slf4j", module: "jcl-over-slf4j" + }, + "java-drive-query-builder" ] } } diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/build.gradle index 385cd115382..942ed726c30 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/build.gradle @@ -8,5 +8,7 @@ dependencies { api(platform(project(":spring-boot-project:spring-boot-dependencies"))) api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter")) api("org.springframework:spring-tx") - api("org.springframework.data:spring-data-cassandra") + api("org.springframework.data:spring-data-cassandra") { + exclude group: "org.slf4j", module: "jcl-over-slf4j" + } }