Skip to content

Commit

Permalink
Remove reference to 3.0
Browse files Browse the repository at this point in the history
Either remove the reference or update to 3.1
  • Loading branch information
cescoffier committed Nov 23, 2015
1 parent 2514e2d commit a72e813
Show file tree
Hide file tree
Showing 17 changed files with 36 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Gradle Verticle project for compiled Groovy
= Vert.x Simple Gradle Verticle project for compiled Groovy

This project is very similar to the gradle-verticle project but instead of having a verticle implemented in Java, it
uses a Groovy verticle. Unlike the gradle-verticle-groovy project, the Groovy verticle is compiled.
Expand Down
2 changes: 1 addition & 1 deletion gradle-verticles/gradle-verticle-groovy/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Gradle Verticle project for Groovy
= Vert.x Simple Gradle Verticle project for Groovy

This project is very similar to the gradle-verticle project but instead of having a verticle implemented in Java, it
uses a Groovy verticle.
Expand Down
2 changes: 1 addition & 1 deletion gradle-verticles/gradle-verticle-js/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Gradle Verticle project for JavaScript
= Vert.x Simple Gradle Verticle project for JavaScript

This project is very similar to the gradle-verticle project but instead of having a verticle implemented in Java, it
uses a JavaScript verticle.
Expand Down
2 changes: 1 addition & 1 deletion gradle-verticles/gradle-verticle-rb/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Gradle Verticle project for Ruby
= Vert.x Simple Gradle Verticle project for Ruby

This project is very similar to the gradle-verticle project but instead of having a verticle implemented in Java, it
uses a Ruby verticle.
Expand Down
2 changes: 1 addition & 1 deletion gradle-verticles/gradle-verticle/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Gradle Verticle project
= Vert.x Simple Gradle Verticle project

This project is very similar to the gradle-simplest project but instead of embedding Vert.x it shows an example
of writing the code as a verticle.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void start() {

MultiMap headers = MultiMap.caseInsensitiveMultiMap();

headers.add("X-Mailer", "Vert.x Mail-Client 3.0");
headers.add("X-Mailer", "Vert.x Mail-Client 3.1");
headers.add("Message-ID", "12345@example.com");
headers.add("Reply-To", "reply@example.com");
headers.add("Received", "by vertx mail service");
Expand Down
4 changes: 2 additions & 2 deletions maven-simplest/README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Vert.x 3.0 Simplest Maven project
= Vert.x Simplest Maven project

This project shows a very simple hello world Vert.x 3.0 project using Maven, which has a simple HTTP server which
This project shows a very simple hello world Vert.x project using Maven, which has a simple HTTP server which
simply returns "Hello World!" to every request.

In this example Vert.x is used embedded. I.e. we use the Vert.x APIs directly in our own classes rather than deploying
Expand Down
2 changes: 1 addition & 1 deletion maven-verticles/maven-verticle-groovy-compiled/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Maven Verticle for Compiled Groovy project
= Vert.x Simple Maven Verticle for Compiled Groovy project

This project is very similar to the maven-verticle-groovy project but it compiles the Goovy verticle.

Expand Down
2 changes: 1 addition & 1 deletion maven-verticles/maven-verticle-groovy/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Maven Verticle for Groovy project
= Vert.x Simple Maven Verticle for Groovy project

This project is very similar to the maven-verticle project but instead of using a Java verticle is uses a Groovy
verticle.
Expand Down
8 changes: 7 additions & 1 deletion maven-verticles/maven-verticle-groovy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.vertx</groupId>
<artifactId>maven-verticle-groovy</artifactId>
<version>3.1.0</version>
<version>3.2.0-SNAPSHOT</version>

<properties>
<!-- the Groovy file -->
Expand All @@ -16,6 +16,12 @@

<dependencies>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-hawkular-metrics</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-verticles/maven-verticle-js/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Maven Verticle for JavaScript project
= Vert.x Simple Maven Verticle for JavaScript project

This project is very similar to the maven-verticle project but instead of using a Java verticle is uses a JavaScript
verticle.
Expand Down
8 changes: 7 additions & 1 deletion maven-verticles/maven-verticle-js/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.vertx</groupId>
<artifactId>maven-verticle-javascript</artifactId>
<version>3.1.0</version>
<version>3.2.0-SNAPSHOT</version>

<properties>
<main.verticle>MyJavaScriptVerticle.js</main.verticle>
Expand All @@ -34,6 +34,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-hawkular-metrics</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>

</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion maven-verticles/maven-verticle-rb/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Maven Verticle for Ruby project
= Vert.x Simple Maven Verticle for Ruby project

This project is very similar to the maven-verticle project but instead of using a Java verticle is uses a Ruby
verticle.
Expand Down
2 changes: 1 addition & 1 deletion maven-verticles/maven-verticle/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Simple Maven Verticle project
= Vert.x Simple Maven Verticle project

This project is very similar to the maven-simplest project but instead of embedding Vert.x it shows an example
of writing the code as a verticle.
Expand Down
8 changes: 7 additions & 1 deletion maven-verticles/maven-verticle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.vertx</groupId>
<artifactId>maven-verticle</artifactId>
<version>3.1.0</version>
<version>3.2.0-SNAPSHOT</version>

<properties>
<!-- the main verticle class name -->
Expand All @@ -29,6 +29,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-hawkular-metrics</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>

</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"dependencies": {
"sockjs-client": "1.0.0",
"vertx3-eventbus-client": "3.0.0-1"
"vertx3-eventbus-client": "3.1.0"
},
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion spring-examples/spring-example/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Vert.x 3.0 Spring-vertx example project
= Vert.x Spring-vertx example project

This project is a demo of exposing Spring-hosted service beans (and therefore Spring-wired services) via vert.x
verticles. In vert.x 3 it's perfectly possible to share an application context between multiple verticles.
Expand Down

0 comments on commit a72e813

Please sign in to comment.