Search before reporting
Read release policy
User environment
branch-4.2
Issue Description
There was a mistake in Jetty 12 upgrade. It added the wrong Jetty ee8 BOM coordinates.
<dependency>
<groupId>org.eclipse.jetty.ee8</groupId>
<artifactId>jetty-ee8</artifactId>
<version>${jetty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
The correct BOM for ee8 is
<dependency>
<groupId>org.eclipse.jetty.ee8</groupId>
<artifactId>jetty-ee8-bom</artifactId>
<version>${jetty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Error messages
Reproducing the issue
was reproduced in #25534
Additional information
n/a
Are you willing to submit a PR?
Search before reporting
Read release policy
User environment
branch-4.2
Issue Description
There was a mistake in Jetty 12 upgrade. It added the wrong Jetty ee8 BOM coordinates.
The correct BOM for ee8 is
Error messages
Reproducing the issue
was reproduced in #25534
Additional information
n/a
Are you willing to submit a PR?