From c2cd6fd0a003e6245f1bee26b023e73e691fe96b 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/spring-gemfire-starter-test.gradle | 2 +- spring-geode-starter-test/spring-geode-starter-test.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle index df03c68a..4a0b7100 100644 --- a/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle +++ b/spring-gemfire-starter-test/spring-gemfire-starter-test.gradle @@ -9,7 +9,7 @@ dependencies { compile "org.springframework.boot:spring-boot-starter-test" - testCompile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") { + compile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") { exclude group: "javax.servlet", module: "javax.servlet-api" exclude group: "org.apache.logging.log4j", module: "log4j-core" } diff --git a/spring-geode-starter-test/spring-geode-starter-test.gradle b/spring-geode-starter-test/spring-geode-starter-test.gradle index 0c8323d4..3a5b6146 100644 --- a/spring-geode-starter-test/spring-geode-starter-test.gradle +++ b/spring-geode-starter-test/spring-geode-starter-test.gradle @@ -9,7 +9,7 @@ dependencies { compile "org.springframework.boot:spring-boot-starter-test" - testCompile('org.springframework.data:spring-data-geode-test') { + compile('org.springframework.data:spring-data-geode-test') { exclude group: "javax.servlet", module: "javax.servlet-api" exclude group: "org.apache.logging.log4j", module: "log4j-core" }