lhotari opened a new issue, #25539: URL: https://github.com/apache/pulsar/issues/25539
### Search before reporting - [x] I searched in the [issues](https://github.com/apache/pulsar/issues) and found nothing similar. ### Read release policy - [x] I understand that [unsupported versions](https://pulsar.apache.org/contribute/release-policy/#supported-versions) don't get bug fixes. I will attempt to reproduce the issue on a supported version of Pulsar client and Pulsar broker. ### User environment branch-4.2 ### Issue Description There was a mistake in Jetty 12 upgrade. It added the wrong Jetty ee8 BOM coordinates. ```xml <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 ```xml <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 ```text ``` ### Reproducing the issue was reproduced in https://github.com/apache/pulsar/pull/25534 ### Additional information n/a ### Are you willing to submit a PR? - [x] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
