Skip to content

Commit 0b610c9

Browse files
authored
Merge pull request #1271 from edwardcapriolo/modern-jackson
Modernize jackson for OSS transient vulnerability
2 parents be9d9fe + c678001 commit 0b610c9

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
@@ -23,7 +23,7 @@
2323
<dep.hubspot-immutables.version>1.9</dep.hubspot-immutables.version>
2424
<dep.algebra.version>1.5</dep.algebra.version>
2525
<dep.mockito.version>5.20.0</dep.mockito.version>
26-
26+
<dep.jackson.version>2.20.1</dep.jackson.version>
2727

2828
<basepom.test.add.opens>
2929
--add-opens=java.base/java.lang=ALL-UNNAMED
@@ -72,27 +72,27 @@
7272
<dependency>
7373
<groupId>com.fasterxml.jackson.core</groupId>
7474
<artifactId>jackson-annotations</artifactId>
75-
<version>2.14.0</version>
75+
<version>2.20</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>com.fasterxml.jackson.core</groupId>
7979
<artifactId>jackson-databind</artifactId>
80-
<version>2.14.0</version>
80+
<version>${dep.jackson.version}</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>com.fasterxml.jackson.core</groupId>
8484
<artifactId>jackson-core</artifactId>
85-
<version>2.14.0</version>
85+
<version>${dep.jackson.version}</version>
8686
</dependency>
8787
<dependency>
8888
<groupId>com.fasterxml.jackson.dataformat</groupId>
8989
<artifactId>jackson-dataformat-yaml</artifactId>
90-
<version>2.14.0</version>
90+
<version>${dep.jackson.version}</version>
9191
</dependency>
9292
<dependency>
9393
<groupId>com.fasterxml.jackson.datatype</groupId>
9494
<artifactId>jackson-datatype-jdk8</artifactId>
95-
<version>2.14.0</version>
95+
<version>${dep.jackson.version}</version>
9696
</dependency>
9797
<dependency>
9898
<groupId>com.hubspot.immutables</groupId>

0 commit comments

Comments
 (0)