Skip to content

[TLIBS-91] Upgrade jackson. #2954

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion LICENSE-3rdparty.csv
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ import,org.glassfish.jersey.core:jersey-client,EPL-2.0,2011-2019 Oracle and/or i
import,org.glassfish.jersey.core:jersey-common,EPL-2.0,2010-2020 Oracle and/or its affiliates
import,org.glassfish.jersey.ext:jersey-entity-filtering,EPL-2.0,2013-2019 Oracle and/or its affiliates
import,org.glassfish.jersey.inject:jersey-hk2,EPL-2.0,2017-2019 Oracle and/or its affiliates
import,org.glassfish.jersey.media:jersey-media-json-jackson,EPL-2.0,2012-2019 Oracle and/or its affiliates
import,org.glassfish.jersey.media:jersey-media-multipart,EPL-2.0,2012-2019 Oracle and/or its affiliates
import,org.hamcrest:hamcrest-core,BSD-3-Clause,2000-2015 www.hamcrest.org
import,org.javassist:javassist,Apache-2.0,1999-2020 by Shigeru Chiba
Expand Down
11 changes: 2 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@
<include>org.glassfish.hk2:hk2-api</include>
<include>org.glassfish.hk2:hk2-utils</include>
<include>org.glassfish.jersey.media:jersey-media-multipart</include>
<include>org.glassfish.jersey.media:jersey-media-json-jackson</include>
<include>org.glassfish.jersey.ext:jersey-entity-filtering</include>
<include>com.fasterxml.jackson.module:jackson-module-jaxb-annotations</include>
<include>com.fasterxml.jackson.core:jackson-core</include>
Expand Down Expand Up @@ -464,12 +463,6 @@
<artifactId>jersey-media-multipart</artifactId>
<version>${jersey-version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>${jersey-version}</version>
</dependency>

<!-- JSON processing: jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down Expand Up @@ -612,8 +605,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jersey-version>3.0.8</jersey-version>
<jackson-version>2.13.2</jackson-version>
<jackson-databind-version>2.13.4.2</jackson-databind-version>
<jackson-version>2.19.1</jackson-version>
<jackson-databind-version>2.11.1</jackson-databind-version>
<jackson-databind-nullable-version>0.2.3</jackson-databind-nullable-version>
<jakarta-annotation-version>2.1.0</jakarta-annotation-version>
<scribejava-version>8.3.1</scribejava-version>
Expand Down
Loading