Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.8.3 staging #366

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions amqp-bridge-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>amqp-bridge-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<dependencies>
<!-- primary deps -->
Expand Down Expand Up @@ -59,7 +59,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion amqp-proton-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>amqp-proton-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<dependencies>
<!-- primary deps -->
Expand Down
4 changes: 2 additions & 2 deletions camel-bridge-examples/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Launch it by running the `main` method in your IDE or, after having build the pr


----
java -jar target/camel-bridge-examples-3.8.2.jar run io.vertx.example.camel.feed.FeedExample
java -jar target/camel-bridge-examples-3.8.3.jar run io.vertx.example.camel.feed.FeedExample
----

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

----
java -jar target/camel-bridge-examples-3.8.2.jar run io.vertx.example.camel.rmi.RMIExample
java -jar target/camel-bridge-examples-3.8.3.jar run io.vertx.example.camel.rmi.RMIExample
----

Then open your browser to: `http://localhost:8080/?name=world`
4 changes: 2 additions & 2 deletions camel-bridge-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>camel-bridge-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<dependencies>
<dependency>
Expand Down Expand Up @@ -101,7 +101,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions cassandra-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>cassandra-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<build>
<plugins>
Expand Down Expand Up @@ -41,7 +41,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions circuit-breaker-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>circuit-breaker-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<build>
<plugins>
Expand Down Expand Up @@ -52,7 +52,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void start() {
System.out.println("Circuit closed");
});

Future<String> result = breaker.executeWithFallback(future -> {
breaker.executeWithFallback(future -> {
vertx.createHttpClient().getNow(8080, "localhost", "/", response -> {
if (response.statusCode() != 200) {
future.fail("HTTP error");
Expand All @@ -44,9 +44,7 @@ public void start() {
}, v -> {
// Executed when the circuit is opened
return "Hello (fallback)";
});

result.setHandler(ar -> {
}, ar -> {
// Do something with the result
System.out.println("Result: " + ar.result());
});
Expand Down
4 changes: 2 additions & 2 deletions consul-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>consul-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<dependencies>
<dependency>
Expand Down Expand Up @@ -51,7 +51,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
6 changes: 3 additions & 3 deletions core-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>core-examples</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<dependencies>

Expand All @@ -19,7 +19,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.25.Final</version>
<version>2.0.26.Final</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -64,7 +64,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions docker-examples/vertx-docker-example-fabric8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>vertx-docker-example-fabric</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<name>Sample Docker Image for Fabric8</name>

Expand Down Expand Up @@ -109,7 +109,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions docker-examples/vertx-docker-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>vertx-docker-example</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<name>Sample Docker Image with Maven</name>

Expand Down Expand Up @@ -78,7 +78,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion docker-examples/vertx-docker-java-fatjar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

FROM java:8-jre

ENV VERTICLE_FILE hello-verticle-fatjar-3.8.2-fat.jar
ENV VERTICLE_FILE hello-verticle-fatjar-3.8.3-fat.jar

# Set the location of the verticles
ENV VERTICLE_HOME /usr/verticles
Expand Down
4 changes: 2 additions & 2 deletions docker-examples/vertx-docker-java-fatjar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>hello-verticle-fatjar</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<name>Sample Docker Image for Java - FatJar</name>

Expand Down Expand Up @@ -73,7 +73,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion docker-examples/vertx-docker-java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
FROM vertx/vertx3

ENV VERTICLE_NAME io.vertx.sample.hello.HelloVerticle
ENV VERTICLE_FILE target/hello-verticle-3.8.2.jar
ENV VERTICLE_FILE target/hello-verticle-3.8.3.jar

# Set the location of the verticles
ENV VERTICLE_HOME /usr/verticles
Expand Down
4 changes: 2 additions & 2 deletions docker-examples/vertx-docker-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>hello-verticle</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<name>Sample Docker Image for Java</name>

Expand Down Expand Up @@ -38,7 +38,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions examples-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.vertx</groupId>
<artifactId>examples-utils</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<properties>
<tools.jar>${java.home}/../lib/tools.jar</tools.jar>
Expand Down Expand Up @@ -82,7 +82,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
8 changes: 4 additions & 4 deletions fatjar-examples/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To build with Maven

To run the fat jar:

java -jar target/http2-fatjar-3.8.2.jar
java -jar target/http2-fatjar-3.8.3.jar

The build.gradle uses the Gradle shadowJar plugin to assemble the application and all it's dependencies into a single "fat" jar.

Expand All @@ -24,7 +24,7 @@ To build with Gradle

To run the fat jar:

java -jar build/libs/http2-fatjar-3.8.2-all.jar
java -jar build/libs/http2-fatjar-3.8.3-all.jar

NOTE: embedding the key in the jar is a discouraged practice - it is done purposely to keep the example simple

Expand All @@ -40,7 +40,7 @@ To build with Maven

To run the fat jar:

java -jar target/ruby-fatjar-3.8.2.jar.jar
java -jar target/ruby-fatjar-3.8.3.jar.jar

The build.gradle uses the Gradle shadowJar plugin to assemble the application and all it's dependencies into a single "fat" jar.

Expand All @@ -50,4 +50,4 @@ To build with Gradle

To run the fat jar:

java -jar build/libs/ruby-fatjar-3.8.2-all.jar
java -jar build/libs/ruby-fatjar-3.8.3-all.jar
6 changes: 3 additions & 3 deletions fatjar-examples/http2-fatjar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ plugins {
repositories {
jcenter()
// maven {
// url "https://oss.sonatype.org/content/repositories/iovertx-3844/"
// url "https://oss.sonatype.org/content/repositories/iovertx-3856/"
// }
}

version = '3.8.2'
version = '3.8.3'
sourceCompatibility = '1.8'

dependencies {
compile "io.vertx:vertx-core:$version"
compile "io.netty:netty-tcnative-boringssl-static:2.0.25.Final"
compile "io.netty:netty-tcnative-boringssl-static:2.0.26.Final"
}

mainClassName = 'io.vertx.core.Launcher'
Expand Down
6 changes: 3 additions & 3 deletions fatjar-examples/http2-fatjar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>io.vertx</groupId>
<artifactId>http2-fatjar</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<name>HTTP/2 fatjar</name>

Expand All @@ -37,7 +37,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.25.Final</version>
<version>2.0.26.Final</version>
</dependency>

</dependencies>
Expand Down Expand Up @@ -97,7 +97,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions fatjar-examples/ruby-fatjar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ plugins {
repositories {
jcenter()
// maven {
// url "https://oss.sonatype.org/content/repositories/iovertx-3844/"
// url "https://oss.sonatype.org/content/repositories/iovertx-3856/"
// }
}

version = '3.8.2'
version = '3.8.3'
sourceCompatibility = '1.8'

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions fatjar-examples/ruby-fatjar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>io.vertx</groupId>
<artifactId>ruby-fatjar</artifactId>
<version>3.8.2</version>
<version>3.8.3</version>

<name>Ruby fatjar</name>

Expand Down Expand Up @@ -83,7 +83,7 @@
<repositories>
<repository>
<id>staging</id>
<url>https://oss.sonatype.org/content/repositories/iovertx-3844/</url>
<url>https://oss.sonatype.org/content/repositories/iovertx-3856/</url>
</repository>
</repositories>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions gradle-redeploy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ plugins {
repositories {
jcenter()
maven {
url "https://oss.sonatype.org/content/repositories/iovertx-3844/"
url "https://oss.sonatype.org/content/repositories/iovertx-3856/"
}
}

version = '3.8.2'
version = '3.8.3'
sourceCompatibility = '1.8'

dependencies {
Expand Down
Loading