Skip to content

Commit 9f97c15

Browse files
authored
deps : upgrade the jackson-databind to latest version(2.17.0) (#2885)
1 parent 74cce87 commit 9f97c15

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

dynamic-proxy/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,15 @@
3535
</parent>
3636
<artifactId>dynamic-proxy</artifactId>
3737
<dependencies>
38+
<dependency>
39+
<groupId>com.fasterxml.jackson.core</groupId>
40+
<artifactId>jackson-core</artifactId>
41+
<version>2.17.0</version>
42+
</dependency>
3843
<dependency>
3944
<groupId>com.fasterxml.jackson.core</groupId>
4045
<artifactId>jackson-databind</artifactId>
41-
<version>2.16.1</version>
46+
<version>2.17.0</version>
4247
</dependency>
4348
<dependency>
4449
<groupId>org.springframework</groupId>

event-sourcing/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,15 @@
3939
<artifactId>junit-jupiter-engine</artifactId>
4040
<scope>test</scope>
4141
</dependency>
42+
<dependency>
43+
<groupId>com.fasterxml.jackson.core</groupId>
44+
<artifactId>jackson-core</artifactId>
45+
<version>2.17.0</version>
46+
</dependency>
4247
<dependency>
4348
<groupId>com.fasterxml.jackson.core</groupId>
4449
<artifactId>jackson-databind</artifactId>
50+
<version>2.17.0</version>
4551
</dependency>
4652
</dependencies>
4753
<build>

0 commit comments

Comments
 (0)