Skip to content

Commit 616b92a

Browse files
committed
#23560 fix maven pom template
1 parent f463c24 commit 616b92a

File tree

2 files changed

+4
-4
lines changed
  • modules/openapi-generator/src/main/resources/Java/libraries/vertx
  • samples/client/petstore/java/vertx5

2 files changed

+4
-4
lines changed

modules/openapi-generator/src/main/resources/Java/libraries/vertx/pom.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
231231
<!-- Vertx -->
232232
<dependency>
233233
<groupId>io.vertx</groupId>
234-
<artifactId>vertx-rx-java</artifactId>
234+
<artifactId>{{#useRxJava3}}vertx-rx-java3{{/useRxJava3}}{{^useRxJava3}}vertx-rx-java{{/useRxJava3}}</artifactId>
235235
<version>${vertx-version}</version>
236236
</dependency>
237237
<dependency>
@@ -299,7 +299,7 @@
299299

300300
<properties>
301301
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
302-
<vertx-version>{{#supportVertxFuture}}4.0.0{{/supportVertxFuture}}{{^supportVertxFuture}}3.5.2{{/supportVertxFuture}}</vertx-version>
302+
<vertx-version>{{#useVertx5}}5.0.11{{/useVertx5}}{{#supportVertxFuture}}{{^useVertx5}}4.0.0{{/useVertx5}}{{/supportVertxFuture}}{{^supportVertxFuture}}{{^useVertx5}}3.5.2{{/useVertx5}}{{/supportVertxFuture}}</vertx-version>
303303
{{#swagger1AnnotationLibrary}}
304304
<swagger-annotations-version>1.6.6</swagger-annotations-version>
305305
{{/swagger1AnnotationLibrary}}

samples/client/petstore/java/vertx5/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
<!-- Vertx -->
211211
<dependency>
212212
<groupId>io.vertx</groupId>
213-
<artifactId>vertx-rx-java</artifactId>
213+
<artifactId>vertx-rx-java3</artifactId>
214214
<version>${vertx-version}</version>
215215
</dependency>
216216
<dependency>
@@ -269,7 +269,7 @@
269269

270270
<properties>
271271
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
272-
<vertx-version>3.5.2</vertx-version>
272+
<vertx-version>5.0.11</vertx-version>
273273
<jackson-version>2.19.2</jackson-version>
274274
<jackson-databind>2.19.2</jackson-databind>
275275
<jackson-databind-nullable-version>0.2.10</jackson-databind-nullable-version>

0 commit comments

Comments
 (0)