From f99d16364c961c3ceb4567855a931c6c3c8133df Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 28 Aug 2018 17:13:17 -0700 Subject: [PATCH] Add exclusions on Spring Boot Starter Logging. --- spring-data-geode-test/build.gradle | 4 +++- spring-data-geode-test/pom.xml | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/spring-data-geode-test/build.gradle b/spring-data-geode-test/build.gradle index e48fe38..3994248 100644 --- a/spring-data-geode-test/build.gradle +++ b/spring-data-geode-test/build.gradle @@ -12,6 +12,8 @@ dependencies { compile "org.springframework:spring-test" compile "org.springframework.data:spring-data-geode" - provided "org.springframework.boot:spring-boot-starter" + provided ("org.springframework.boot:spring-boot-starter") { + exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"; + } } diff --git a/spring-data-geode-test/pom.xml b/spring-data-geode-test/pom.xml index 571eebe..d37b86c 100644 --- a/spring-data-geode-test/pom.xml +++ b/spring-data-geode-test/pom.xml @@ -75,6 +75,12 @@ spring-boot-starter true provided + + + org.springframework.boot + spring-boot-starter-logging + +