Skip to content

Commit c5b9565

Browse files
committed
pom.xml: adjust Jackson dependencies
For some reason jackson-annotations no longer uses the patch version and jackson-databind now does. See: https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.20
1 parent 4b48c8a commit c5b9565

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929

3030
<ehcache.version>3.11.1</ehcache.version>
3131
<errorprone.version>2.31.0</errorprone.version>
32-
<!-- NOTE: when updating jackson.version, also sync jackson-databind.version below -->
33-
<jackson.version>2.19.2</jackson.version>
34-
<jackson-databind.version>2.19.2</jackson-databind.version>
32+
<!-- NOTE: when updating jackson.version, also sync jackson-annotations.version below -->
33+
<jackson.version>2.20.1</jackson.version>
34+
<jackson-annotations.version>2.20</jackson-annotations.version>
3535
<javax-annotation.version>1.3.2</javax-annotation.version>
3636
<jaxb-api.version>2.3.1</jaxb-api.version>
3737
<jaxb-runtime.version>2.3.9</jaxb-runtime.version>
@@ -1771,12 +1771,12 @@
17711771
<dependency>
17721772
<groupId>com.fasterxml</groupId>
17731773
<artifactId>classmate</artifactId>
1774-
<version>1.7.0</version>
1774+
<version>1.7.1</version>
17751775
</dependency>
17761776
<dependency>
17771777
<groupId>com.fasterxml.jackson.core</groupId>
17781778
<artifactId>jackson-annotations</artifactId>
1779-
<version>${jackson.version}</version>
1779+
<version>${jackson-annotations.version}</version>
17801780
</dependency>
17811781
<dependency>
17821782
<groupId>com.fasterxml.jackson.core</groupId>
@@ -1786,7 +1786,7 @@
17861786
<dependency>
17871787
<groupId>com.fasterxml.jackson.core</groupId>
17881788
<artifactId>jackson-databind</artifactId>
1789-
<version>${jackson-databind.version}</version>
1789+
<version>${jackson.version}</version>
17901790
</dependency>
17911791
<dependency>
17921792
<groupId>com.google.guava</groupId>

0 commit comments

Comments
 (0)