From b0ffcdd1194050dedc9c3bdab92d768555a721c8 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 31 Oct 2023 14:36:57 -0700 Subject: [PATCH] Remove explicit, test runtime-only dependency on org.springframework.boot:spring-boot-starter-jetty from the spring-geode-autoconfigure module. --- .../spring-geode-autoconfigure.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spring-geode-project/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle b/spring-geode-project/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle index f02743ff..c3b49ed6 100644 --- a/spring-geode-project/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle +++ b/spring-geode-project/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle @@ -10,6 +10,10 @@ configurations.implementation { exclude group: "org.apache.httpcomponents", module: "httpclient" } +configurations.testRuntimeOnly { + exclude group: "org.eclipse.jetty", module: "apache-jsp" +} + dependencies { api project(":spring-geode") @@ -36,9 +40,7 @@ dependencies { testRuntimeOnly project(':apache-geode-jetty11') testRuntimeOnly "javax.cache:cache-api" - //testRuntimeOnly "org.apache.geode:geode-http-service:$apacheGeodeVersion" testRuntimeOnly "org.apache.geode:geode-web:$apacheGeodeVersion" - testRuntimeOnly "org.springframework.boot:spring-boot-starter-jetty" testRuntimeOnly "org.springframework.boot:spring-boot-starter-json" testRuntimeOnly "org.springframework.shell:spring-shell:$springShellVersion"