Skip to content

Commit

Permalink
Doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
tsegismont committed Feb 16, 2017
1 parent b9e4fc0 commit 3dced4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/asciidoc/java/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cluster managers are pluggable. This implementation is packaged inside:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-hazelcast</artifactId>
<version>3.4.0.Beta1</version>
<version>3.4.0-SNAPSHOT</version>
</dependency>
----

Expand All @@ -26,11 +26,11 @@ Cluster managers *do not* handle the event bus inter-node transport, this is don

== Using this cluster manager

If you are using Vert.x from the command line, the jar corresponding to this cluster manager (it will be named `vertx-hazelcast-3.4.0.Beta1.jar`
If you are using Vert.x from the command line, the jar corresponding to this cluster manager (it will be named `vertx-hazelcast-3.4.0-SNAPSHOT.jar`
should be in the `lib` directory of the Vert.x installation.

If you want clustering with this cluster manager in your Vert.x Maven or Gradle project then just add a dependency to
the artifact: `io.vertx:vertx-hazelcast:3.4.0.Beta1` in your project.
the artifact: `io.vertx:vertx-hazelcast:3.4.0-SNAPSHOT` in your project.

If the jar is on your classpath as above then Vert.x will automatically detect this and use it as the cluster manager.
Please make sure you don't have any other cluster managers on your classpath or Vert.x might
Expand Down Expand Up @@ -301,7 +301,7 @@ In this later case, you would need in Maven:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-hazelcast</artifactId>
<version>3.4.0.Beta1</version>
<version>3.4.0-SNAPSHOT</version>
</dependency>
----

Expand All @@ -312,7 +312,7 @@ On Gradle, you can achieve the same overloading using:
[source]
----
dependencies {
compile ("io.vertx:vertx-hazelcast:3.4.0.Beta1"){
compile ("io.vertx:vertx-hazelcast:3.4.0-SNAPSHOT"){
exclude group: 'com.hazelcast', module: 'hazelcast'
}
compile "com.hazelcast:hazelcast:ENTER_YOUR_VERSION_HERE"
Expand Down

0 comments on commit 3dced4d

Please sign in to comment.