From 450ef36c7237ca4d3218c10dfbc25b08f0c443fa Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Wed, 12 Feb 2020 14:40:31 +0100 Subject: [PATCH] Exclude jcl-over-slf4j also on Reactive Cassandra starter See gh-20141 --- .../spring-boot-starter-data-cassandra-reactive/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/build.gradle index 013d84b138..3b3669a95c 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/build.gradle @@ -8,6 +8,8 @@ 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" + } api("io.projectreactor:reactor-core") }