From 7f2a9eb1f17810e42294deee654e7051c56058a5 Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 28 Jan 2019 09:43:42 -0800 Subject: [PATCH] Add org.springframework.cloud:spring-cloud-services-starter-service-registry lib to test runtime to expose Pivotal Spring Cloud Services bug. Resolves gh-21. --- spring-geode-autoconfigure/spring-geode-autoconfigure.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle index eb9d2f99..5f3cc0dd 100644 --- a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle +++ b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle @@ -27,4 +27,9 @@ dependencies { testRuntime("org.springframework.boot:spring-boot-starter-web") { exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" } + + // Runtime Test dependency on Spring Cloud Services (SCS) to verify workaround to SCS problem! + testRuntime("io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry:2.0.3.RELEASE") { + exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" + } }