Downgrade to Eclipse Jetty 9.4.39.v20210325.

Add dependency management for Eclipse Jetty using the Jetty Maven BOM.

Eclipse Jetty 9.4.x is the required version for Apache Geode 1.14.x.
This commit is contained in:
John Blum
2022-02-09 14:15:22 -08:00
parent 821144bfcd
commit 358fd03438
2 changed files with 4 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ deployDocsHost=docs-ip.spring.io
antlrVersion=2.7.7
apacheGeodeVersion=1.14.2
awaitilityVersion=4.1.1
eclipseJettyVersion=9.4.39.v20210325
findbugsVersion=3.0.2
multithreadedtcVersion=1.01
pivotalCloudCacheVersion=1.14.2

View File

@@ -1,6 +1,9 @@
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:$springBootVersion"
// 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.
mavenBom "org.eclipse.jetty:jetty-bom:$eclipseJettyVersion"
}
dependencies {
dependency "antlr:antlr:$antlrVersion"