Skip to content

Commit dc15ac9

Browse files
authored
Upgrade to Vert.x 5.0.7 (#481)
Also: - bump Kotlin and Maven shade plugin - fix launcher application configs Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent 74bd9a9 commit dc15ac9

File tree

47 files changed

+149
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+149
-108
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ web-examples/src/main/java/io/vertx/example/web/react/node_modules
2929
service-proxy-examples/service-provider/node-client/node_modules
3030
openshift2-example/**/*.jar
3131
node_modules
32+
dependency-reduced-pom.xml

amqp-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>amqp-examples</artifactId>

camel-bridge-examples/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Launch it by running the `main` method in your IDE or, after having build the pr
2525

2626

2727
----
28-
java -jar target/camel-bridge-examples-5.0.0.jar run io.vertx.example.camel.feed.FeedExample
28+
java -jar target/camel-bridge-examples-5.0.7.jar io.vertx.example.camel.feed.FeedExample
2929
----
3030

3131
== RMI example
@@ -45,7 +45,7 @@ This example demonstrates:
4545
Launch it by running the `main` method in your IDE , after having build the project with `mvn clean package`, with:
4646

4747
----
48-
java -jar target/camel-bridge-examples-5.0.0.jar run io.vertx.example.camel.rmi.RMIExample
48+
java -jar target/camel-bridge-examples-5.0.7.jar io.vertx.example.camel.rmi.RMIExample
4949
----
5050

5151
Then open your browser to: `http://localhost:8080/?name=world`

camel-bridge-examples/pom.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>camel-bridge-examples</artifactId>
1414

1515
<dependencies>
16+
<dependency>
17+
<groupId>io.vertx</groupId>
18+
<artifactId>vertx-launcher-application</artifactId>
19+
<version>${project.version}</version>
20+
</dependency>
1621
<dependency>
1722
<groupId>io.vertx</groupId>
1823
<artifactId>vertx-camel-bridge</artifactId>
@@ -122,7 +127,7 @@
122127
<plugin>
123128
<groupId>org.apache.maven.plugins</groupId>
124129
<artifactId>maven-shade-plugin</artifactId>
125-
<version>2.3</version>
130+
<version>3.6.1</version>
126131
<executions>
127132
<!-- Run shade goal on package phase -->
128133
<execution>
@@ -135,7 +140,7 @@
135140
<transformers>
136141
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
137142
<manifestEntries>
138-
<Main-Class>io.vertx.core.Launcher</Main-Class>
143+
<Main-Class>io.vertx.launcher.application.VertxApplication</Main-Class>
139144
</manifestEntries>
140145
</transformer>
141146
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">

cassandra-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>cassandra-examples</artifactId>

circuit-breaker-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>circuit-breaker-examples</artifactId>

config-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.vertx</groupId>
1010
<artifactId>vertx-examples</artifactId>
11-
<version>5.0.0</version>
11+
<version>5.0.7</version>
1212
</parent>
1313

1414
<artifactId>config-examples</artifactId>

consul-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>consul-examples</artifactId>

core-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>core-examples</artifactId>

grpc-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.vertx</groupId>
99
<artifactId>vertx-examples</artifactId>
10-
<version>5.0.0</version>
10+
<version>5.0.7</version>
1111
</parent>
1212

1313
<artifactId>grpc-examples</artifactId>

0 commit comments

Comments
 (0)