Skip to content

Commit

Permalink
Upgrade jackson to 2.13.x and use their BOM
Browse files Browse the repository at this point in the history
See FasterXML/jackson-databind#3428
for why the BOM version has a date suffix.
  • Loading branch information
dziemba committed May 9, 2022
1 parent 8bd3761 commit 51816e5
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pom.xml
Expand Up @@ -96,7 +96,7 @@
<slf4j-api.version>1.7.12</slf4j-api.version>
<mockito-core.version>3.2.4</mockito-core.version>
<commons-io.version>2.6</commons-io.version>
<jackson.version>2.8.9</jackson.version>
<jackson.version>2.13.2.20220328</jackson.version>
<immutables.version>2.8.3</immutables.version>
<powermock.version>2.0.2</powermock.version>
<objenesis.version>3.0.1</objenesis.version>
Expand All @@ -112,6 +112,13 @@
<artifactId>objenesis</artifactId>
<version>${objenesis.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -144,27 +151,22 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-parameter-names</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
Expand Down

0 comments on commit 51816e5

Please sign in to comment.