Skip to content

Commit

Permalink
Update to Jackson 2.14.3
Browse files Browse the repository at this point in the history
Note while most users will likely already have their managed version of Jackson provided, this at least makes it for users who don't explicitly include Jackson then use a newer patch version (instead of the release candidate). Also aligns the jackson-annotations version. Didn't push the minor version forward because allow for the downstream consumer to decide what Jackson version they want as much as possible i.e. they can push it forward rather than forcing the dependency/avoid programming against newer Jackson minor features.
  • Loading branch information
ryanrupp committed Nov 22, 2024
1 parent ec2826c commit ec71665
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,20 @@
</profile>
</profiles>

<properties>
<jackson.version>2.14.3</jackson.version>
</properties>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.2</version>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.0-rc1</version>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
Expand Down

0 comments on commit ec71665

Please sign in to comment.