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:
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user