From 38e2f6186fdd5694cf00da0a31080c6b61f3a7cf Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 23 Aug 2019 01:56:01 -0700 Subject: [PATCH] Switch from direct compile-time dependency on 'org.springframework.data:spring-data-geode-test' to using the ':spring-geode-starter-test' module. --- .../boot/actuator/spring-geode-samples-boot-actuator.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle b/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle index 44984bb4..9e86c025 100644 --- a/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle +++ b/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle @@ -10,13 +10,13 @@ dependencies { compile project(":spring-geode-starter-actuator") - compile "org.springframework.boot:spring-boot-starter-web" - - compile("org.springframework.data:spring-data-geode-test") { + compile(project(":spring-geode-starter-test")) { exclude group: "javax.servlet", module: "javax.servlet-api" exclude group: "org.apache.logging.log4j", module: "log4j-core" } + compile "org.springframework.boot:spring-boot-starter-web" + } bootJar {