From 8506702871b68236ef1a4018de07a66c37311df1 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 22 Aug 2019 22:45:03 -0700 Subject: [PATCH] Fix incorrect scope on the 'org.springframework.data:spring-data-geode-test' dependency in the 'spring-geode-starter-test' module. Fix incorrect scope on the 'org.springframework.data:spring-data-gemfire-test' dependency in the 'spring-gemfire-starter-test' module. Resolves gh-50. --- .../spring-gemfire-starter-test.gradle | 6 ++++-- spring-geode-starter-test/spring-geode-starter-test.gradle | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle index 3c3ecd8f..0c973b0c 100644 --- a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle +++ b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle @@ -7,8 +7,10 @@ dependencies { compile project(':spring-gemfire-starter') - compile "org.springframework.boot:spring-boot-starter-test" + compile("org.springframework.boot:spring-boot-starter-test") { + exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" + } - testCompile "org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion" + compile "org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion" } diff --git a/spring-geode-starter-test/spring-geode-starter-test.gradle b/spring-geode-starter-test/spring-geode-starter-test.gradle index ffa04979..b49d21c5 100644 --- a/spring-geode-starter-test/spring-geode-starter-test.gradle +++ b/spring-geode-starter-test/spring-geode-starter-test.gradle @@ -11,6 +11,6 @@ dependencies { exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" } - testCompile 'org.springframework.data:spring-data-geode-test' + compile 'org.springframework.data:spring-data-geode-test' }