deps : upgrade the jackson-databind to latest version(2.17.0) (#2885)

This commit is contained in:
Surjendu
2024-04-02 23:06:39 +05:30
committed by GitHub
parent 74cce87c70
commit 9f97c1505d
2 changed files with 12 additions and 1 deletions
+6 -1
View File
@@ -35,10 +35,15 @@
</parent>
<artifactId>dynamic-proxy</artifactId>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.16.1</version>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
+6
View File
@@ -39,9 +39,15 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.0</version>
</dependency>
</dependencies>
<build>