From 6a9513c64233d65f5b26c43b60219999fd9664b0 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 22 Jan 2020 15:11:09 -0800 Subject: [PATCH] Add 'org.apache.geode:geode-http-service' as testRuntime dependency to enable the embedded Apache Geode HTTP service/HTTP server (using Jetty). This will in turn configure and bootstrap the Management/Admin REST API required by the cluster configuration push functionality in SDG/SBDG. --- spring-geode-autoconfigure/spring-geode-autoconfigure.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle index 910f18d4..d06ffc7c 100644 --- a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle +++ b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle @@ -34,6 +34,7 @@ dependencies { } testRuntime "javax.cache:cache-api" + testRuntime "org.apache.geode:geode-http-service:$apacheGeodeVersion" testRuntime "org.apache.geode:geode-web:$apacheGeodeVersion" testRuntime "org.springframework.boot:spring-boot-starter-web" testRuntime "org.springframework.boot:spring-boot-starter-jetty"