-
Notifications
You must be signed in to change notification settings - Fork 9.1k
HADOOP-19014. Jackson 2.14.3 requiring jsr311-compat #6370
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 all commits
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 |
---|---|---|
|
@@ -69,8 +69,8 @@ | |
<jersey.version>1.19.4</jersey.version> | ||
|
||
<!-- jackson versions --> | ||
<jackson2.version>2.12.7</jackson2.version> | ||
<jackson2.databind.version>2.12.7.1</jackson2.databind.version> | ||
<jackson2.version>2.14.3</jackson2.version> | ||
<jackson2.databind.version>2.14.3</jackson2.databind.version> | ||
|
||
<!-- httpcomponents versions --> | ||
<httpclient.version>4.5.13</httpclient.version> | ||
|
@@ -901,7 +901,7 @@ | |
<dependency> | ||
<groupId>com.github.pjfanning</groupId> | ||
<artifactId>jersey-json</artifactId> | ||
<version>1.20</version> | ||
<version>1.21.0</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
|
@@ -921,6 +921,11 @@ | |
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
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. should have a comment above to explain, maybe something on L72 to say why we've had problems with jackson updates 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'll add some comments and recheck the dependency scopes. |
||
<groupId>com.github.pjfanning</groupId> | ||
<artifactId>jsr311-compat</artifactId> | ||
<version>0.1.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-server</artifactId> | ||
|
@@ -2382,7 +2387,8 @@ | |
<include>com.google.inject:guice:4.0</include> | ||
<include>com.sun.jersey:jersey-core:1.19.4</include> | ||
<include>com.sun.jersey:jersey-servlet:1.19.4</include> | ||
<include>com.github.pjfanning:jersey-json:1.20</include> | ||
<include>com.github.pjfanning:jersey-json:1.21.0</include> | ||
<include>com.github.pjfanning:jsr311-compat:0.1.0</include> | ||
<include>com.sun.jersey:jersey-server:1.19.4</include> | ||
<include>com.sun.jersey:jersey-client:1.19.4</include> | ||
<include>com.sun.jersey:jersey-grizzly2:1.19.4</include> | ||
|
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.
what will break if this is not on the classpath?