-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-19674. [JDK 17] Add jaxb-runtime #7928
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
450d122
0b9139b
c5a26a7
7d1831a
56b01d2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -68,6 +68,9 @@ | |
| <!-- jersey version --> | ||
| <jersey2.version>2.46</jersey2.version> | ||
|
|
||
| <!-- jaxb version --> | ||
| <jaxb.version>2.3.9</jaxb.version> | ||
|
|
||
| <!-- jackson versions --> | ||
| <jackson2.version>2.14.3</jackson2.version> | ||
| <jackson2.databind.version>2.14.3</jackson2.databind.version> | ||
|
|
@@ -2152,6 +2155,11 @@ | |
| <artifactId>jersey-media-json-jettison</artifactId> | ||
| <version>${jersey2.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we're globally dependency managing jaxb-runtime, I think that we don't need all the excludes in this patch.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that the reported error was for the earlier patch without the global dependency management. |
||
| <groupId>org.glassfish.jaxb</groupId> | ||
| <artifactId>jaxb-runtime</artifactId> | ||
| <version>${jaxb.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>net.jodah</groupId> | ||
| <artifactId>failsafe</artifactId> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this one is necessary otherwise at the end on install i am facing this error:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have checked 3.4.2, and these classes are not present there.
Based on that, it seems that hadoop-client-runtime indeed does not include jaxb-impl traditionally.