From 760b381941df02c8bc797d9c75a4f589e10c882f Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 23 Jul 2020 12:23:44 -0700 Subject: [PATCH] Switch the 'org.springframework.boot:spring-boot-starter-web' dependency from 'testRuntime' to 'testCompile'. --- spring-geode-autoconfigure/spring-geode-autoconfigure.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle index ef6be3dd..f834e3de 100644 --- a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle +++ b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle @@ -26,6 +26,7 @@ dependencies { testCompile "org.mockito:mockito-core" testCompile "org.projectlombok:lombok" testCompile "org.springframework.boot:spring-boot-starter-test" + testCompile "org.springframework.boot:spring-boot-starter-web" testCompile "edu.umd.cs.mtc:multithreadedtc" testCompile("org.springframework.data:spring-data-geode-test") { @@ -36,7 +37,6 @@ 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" testRuntime "org.springframework.boot:spring-boot-starter-json" testRuntime "org.springframework.shell:spring-shell:$springShellVersion"