Skip to content

Commit 9c6ee0a

Browse files
committed
Added explicit Vertx version
1 parent b40deca commit 9c6ee0a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<properties>
1212
<maven.compiler.source>21</maven.compiler.source>
1313
<maven.compiler.target>21</maven.compiler.target>
14+
<vertx.version>4.5.13</vertx.version>
1415
<uid2-shared.version>8.1.25</uid2-shared.version>
1516
</properties>
1617
<packaging>jar</packaging>
@@ -61,6 +62,36 @@
6162
<artifactId>uid2-shared</artifactId>
6263
<version>${uid2-shared.version}</version>
6364
</dependency>
65+
<dependency>
66+
<groupId>io.vertx</groupId>
67+
<artifactId>vertx-core</artifactId>
68+
<version>${vertx.version}</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>io.vertx</groupId>
72+
<artifactId>vertx-web</artifactId>
73+
<version>${vertx.version}</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>io.vertx</groupId>
77+
<artifactId>vertx-web-client</artifactId>
78+
<version>${vertx.version}</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>io.vertx</groupId>
82+
<artifactId>vertx-micrometer-metrics</artifactId>
83+
<version>${vertx.version}</version>
84+
</dependency>
85+
<dependency>
86+
<groupId>io.vertx</groupId>
87+
<artifactId>vertx-auth-oauth2</artifactId>
88+
<version>${vertx.version}</version>
89+
</dependency>
90+
<dependency>
91+
<groupId>io.vertx</groupId>
92+
<artifactId>vertx-web-templ-pebble</artifactId>
93+
<version>${vertx.version}</version>
94+
</dependency>
6495
<dependency>
6596
<groupId>com.fasterxml.jackson.core</groupId>
6697
<artifactId>jackson-databind</artifactId>

0 commit comments

Comments
 (0)