Skip to content

Commit 56aea99

Browse files
committed
Declare apache-geode-jetty11 as a test runtime dependency in the spring-geode-autoconfigure module.
Replaces the old Apache Geode geode-http-service test runtime dependency, which was based on Eclipse Jetty 9, which causes a conflict with Spring Boot 3 declaring and managing Eclipse Jetty 11 in order to align with the Jakarta EE 9 specification as a baseline. Closes #116.
1 parent d368cc8 commit 56aea99

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spring-geode-project/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ dependencies {
2828

2929
testCompileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
3030

31+
testRuntimeOnly project(':apache-geode-jetty11')
32+
3133
testRuntimeOnly "javax.cache:cache-api"
32-
testRuntimeOnly "org.apache.geode:geode-http-service:$apacheGeodeVersion"
34+
//testRuntimeOnly "org.apache.geode:geode-http-service:$apacheGeodeVersion"
3335
testRuntimeOnly "org.apache.geode:geode-web:$apacheGeodeVersion"
3436
testRuntimeOnly "org.springframework.boot:spring-boot-starter-jetty"
3537
testRuntimeOnly "org.springframework.boot:spring-boot-starter-json"

0 commit comments

Comments
 (0)