Skip to content

Commit 893ff7f

Browse files
committed
Update to Jackson 2.14.3
Note while most users will likely already have their managed version of Jackson provided, this at least makes it for users who don't avoid using the old release candidate version. 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.
1 parent ec2826c commit 893ff7f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

api/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,20 @@
7676
</profile>
7777
</profiles>
7878

79+
<properties>
80+
<jackson.version>2.14.3</jackson.version>
81+
</properties>
82+
7983
<dependencies>
8084
<dependency>
8185
<groupId>com.fasterxml.jackson.core</groupId>
8286
<artifactId>jackson-annotations</artifactId>
83-
<version>2.13.2</version>
87+
<version>${jackson.version}</version>
8488
</dependency>
8589
<dependency>
8690
<groupId>com.fasterxml.jackson.core</groupId>
8791
<artifactId>jackson-databind</artifactId>
88-
<version>2.14.0-rc1</version>
92+
<version>${jackson.version}</version>
8993
</dependency>
9094
<dependency>
9195
<groupId>com.auth0</groupId>

0 commit comments

Comments
 (0)