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.
This commit is contained in:
John Blum
2022-04-14 17:03:44 -07:00
parent d368cc8929
commit 56aea99e82

View File

@@ -28,8 +28,10 @@ dependencies {
testCompileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
testRuntimeOnly project(':apache-geode-jetty11')
testRuntimeOnly "javax.cache:cache-api"
testRuntimeOnly "org.apache.geode:geode-http-service:$apacheGeodeVersion"
//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"