Skip to content

Commit 1a62761

Browse files
authored
Upgrade to Vert.x 4.5.9 and use the new data object JSON serializer library, in addition perform a few tweaks to the server. (#9171)
1 parent 8710bc8 commit 1a62761

File tree

9 files changed

+194
-158
lines changed

9 files changed

+194
-158
lines changed

frameworks/Java/vertx/pom.xml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<maven.compiler.target>17</maven.compiler.target>
1111
<!-- the main class -->
1212
<main.class>vertx.App</main.class>
13-
<stack.version>4.5.8</stack.version>
13+
<stack.version>4.5.9</stack.version>
1414
<jackson.version>2.16.1</jackson.version>
15-
<netty.version>4.1.110.Final</netty.version>
15+
<netty.version>4.1.111.Final</netty.version>
1616
<netty.io_uring.version>0.0.25.Final</netty.io_uring.version>
1717
</properties>
1818

@@ -32,6 +32,11 @@
3232
<artifactId>jackson-core</artifactId>
3333
<version>${jackson.version}</version>
3434
</dependency>
35+
<dependency>
36+
<groupId>com.julienviet</groupId>
37+
<artifactId>jsonsergen</artifactId>
38+
<version>0.0.4</version>
39+
</dependency>
3540
<dependency>
3641
<groupId>io.netty</groupId>
3742
<artifactId>netty-transport-native-kqueue</artifactId>
@@ -70,6 +75,16 @@
7075
<configuration>
7176
<debug>false</debug>
7277
</configuration>
78+
<executions>
79+
<execution>
80+
<id>default-compile</id>
81+
<configuration>
82+
<annotationProcessors>
83+
<annotationProcessor>io.vertx.codegen.CodeGenProcessor</annotationProcessor>
84+
</annotationProcessors>
85+
</configuration>
86+
</execution>
87+
</executions>
7388
</plugin>
7489
<plugin>
7590
<groupId>com.fizzed</groupId>

0 commit comments

Comments
 (0)