Skip to content

Commit 32df200

Browse files
authored
Fix Vert.x Jackson dependency (#7408)
1 parent f1d4092 commit 32df200

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

frameworks/Java/vertx/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!-- the main class -->
1212
<main.class>vertx.App</main.class>
1313
<stack.version>4.1.4</stack.version>
14-
<jackson.version>2.13.2.1</jackson.version>
14+
<jackson.version>2.13.3</jackson.version>
1515
<netty.version>4.1.67.Final</netty.version>
1616
</properties>
1717

@@ -26,6 +26,11 @@
2626
<artifactId>vertx-pg-client</artifactId>
2727
<version>${stack.version}</version>
2828
</dependency>
29+
<dependency>
30+
<groupId>com.fasterxml.jackson.core</groupId>
31+
<artifactId>jackson-core</artifactId>
32+
<version>${jackson.version}</version>
33+
</dependency>
2934
<dependency>
3035
<groupId>com.fasterxml.jackson.core</groupId>
3136
<artifactId>jackson-databind</artifactId>

0 commit comments

Comments
 (0)