Disable overridden and custom dependency management for Eclipse Jetty.

Apache Geode 1.14.4 is based on Eclipse Jetty 9; However, Spring Boot 3 upgraded the declared and managed Eclipse Jetty dependency to 11 in order to align with the Jakarta EE 9 migration and baseline.

Rolling back the Eclipse Jetty version override and dependency management to again align with Spring Boot 3.

Resolves #116.
This commit is contained in:
John Blum
2022-04-14 16:57:37 -07:00
parent 5addaa4eca
commit 19799d10c8
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
antlrVersion=2.7.7
apacheGeodeVersion=1.14.4
awaitilityVersion=4.2.0
eclipseJettyVersion=9.4.39.v20210325
#eclipseJettyVersion=9.4.39.v20210325
findbugsVersion=3.0.2
#micrometerVersion=1.9.0-SNAPSHOT
multithreadedtcVersion=1.01

View File

@@ -1,4 +1,4 @@
ext['jetty.version'] = "$eclipseJettyVersion"
//ext['jetty.version'] = "$eclipseJettyVersion"
//ext['micrometer.version'] = "$micrometerVersion"
dependencyManagement {
@@ -21,7 +21,7 @@ dependencyManagement {
// Declared and managed Eclipse Jetty (BOM) version based on Apache Geode 1.14.3's declared, required Jetty
// version (9.x)! This Jetty version is incompatible with Jakarta EE 9 and Spring Boot 3. Spring Boot 3
// declares and uses Jetty 11.
mavenBom "org.eclipse.jetty:jetty-bom:$eclipseJettyVersion"
//mavenBom "org.eclipse.jetty:jetty-bom:$eclipseJettyVersion"
// Declared and managed Testcontainers libraries version.
mavenBom "org.testcontainers:testcontainers-bom:$testcontainersVersion"