fix(deps): remove explicit jersey version pins to inherit from BOM#28106
Open
yan-3005 wants to merge 2 commits into
Open
fix(deps): remove explicit jersey version pins to inherit from BOM#28106yan-3005 wants to merge 2 commits into
yan-3005 wants to merge 2 commits into
Conversation
… BOM jersey-client and jersey-apache-connector were pinned to 3.1.9 in openmetadata-sdk and openmetadata-integration-tests. The root pom.xml jersey-bom already manages all org.glassfish.jersey.* artifacts at 3.1.11. Removing the explicit pins lets both modules inherit 3.1.11 from the BOM, consistent with the rest of the project.
Contributor
There was a problem hiding this comment.
Pull request overview
Removes explicit <version> pins on org.glassfish.jersey.* artifacts in two modules so they inherit version 3.1.11 from the root jersey-bom import, restoring uniform Jersey versions across the project.
Changes:
- Drop explicit
3.1.9pin onjersey-apache-connectorinopenmetadata-sdk. - Drop explicit
3.1.9pins onjersey-clientandjersey-apache-connectorinopenmetadata-integration-tests.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| openmetadata-sdk/pom.xml | Removes explicit version on jersey-apache-connector to inherit BOM-managed 3.1.11. |
| openmetadata-integration-tests/pom.xml | Removes explicit versions on jersey-client and jersey-apache-connector to inherit BOM-managed 3.1.11. |
sonika-shah
approved these changes
May 14, 2026
Contributor
🔴 Playwright Results — 1 failure(s), 16 flaky✅ 4053 passed · ❌ 1 failed · 🟡 16 flaky · ⏭️ 103 skipped
Genuine Failures (failed on all attempts)❌
|
Code Review ✅ ApprovedRemoves explicit Jersey version pins to ensure uniform resolution to 3.1.11 via the project BOM. No issues found. OptionsDisplay: compact → Showing less information. Comment with these commands to change:
Was this helpful? React with 👍 / 👎 | Gitar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Dependabot bumped explicit jersey version pins, but the root
pom.xmlalready importsjersey-bomwhich manages allorg.glassfish.jersey.*artifacts at 3.1.11. Explicit<version>entries override the BOM, causing those modules to resolve older versions than the rest of the project.Fix: remove all explicit version pins for
org.glassfish.jersey.*so every module inherits 3.1.11 from the BOM uniformly.openmetadata-sdkjersey-apache-connectoropenmetadata-integration-testsjersey-clientopenmetadata-integration-testsjersey-apache-connectorAlso resolves #28000.
Verification