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' }