diff --git a/README.md b/README.md
index c3b752c51..a8ac549d9 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ Include dependency in your project:
io.moquette
moquette-broker
- 0.8.1
+ 0.9
```
diff --git a/broker/pom.xml b/broker/pom.xml
index 6e1bb8a5e..c8fc6dd4e 100644
--- a/broker/pom.xml
+++ b/broker/pom.xml
@@ -6,7 +6,7 @@
../
moquette-parent
io.moquette
- 0.9-SNAPSHOT
+ 0.9
moquette-broker
diff --git a/broker/src/main/java/io/moquette/server/Server.java b/broker/src/main/java/io/moquette/server/Server.java
index cfbad4d3f..d843af741 100644
--- a/broker/src/main/java/io/moquette/server/Server.java
+++ b/broker/src/main/java/io/moquette/server/Server.java
@@ -68,7 +68,7 @@ public class Server {
public static void main(String[] args) throws IOException {
final Server server = new Server();
server.startServer();
- System.out.println("Server started, version 0.9-SNAPSHOT");
+ System.out.println("Server started, version 0.9");
//Bind a shutdown hook
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
diff --git a/distribution/pom.xml b/distribution/pom.xml
index a5be74e5f..46ae6390a 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -6,7 +6,7 @@
moquette-parent
io.moquette
- 0.9-SNAPSHOT
+ 0.9
distribution
diff --git a/embedding_moquette/pom.xml b/embedding_moquette/pom.xml
index c21ba2317..82cfce354 100644
--- a/embedding_moquette/pom.xml
+++ b/embedding_moquette/pom.xml
@@ -5,7 +5,7 @@
../
moquette-parent
io.moquette
- 0.9-SNAPSHOT
+ 0.9
moquette-embedded-test
diff --git a/netty_parser/pom.xml b/netty_parser/pom.xml
index babc7432d..0cbaeb899 100644
--- a/netty_parser/pom.xml
+++ b/netty_parser/pom.xml
@@ -6,7 +6,7 @@
../
moquette-parent
io.moquette
- 0.9-SNAPSHOT
+ 0.9
moquette-netty-parser
diff --git a/osgi_test/pom.xml b/osgi_test/pom.xml
index d3b8a44aa..56f6426f0 100644
--- a/osgi_test/pom.xml
+++ b/osgi_test/pom.xml
@@ -5,7 +5,7 @@
../
moquette-parent
io.moquette
- 0.9-SNAPSHOT
+ 0.9
moquette-osgi-test
diff --git a/perf/pom.xml b/perf/pom.xml
index 43d835825..ce47a82fe 100644
--- a/perf/pom.xml
+++ b/perf/pom.xml
@@ -6,7 +6,7 @@
../
moquette-parent
io.moquette
- 0.9-SNAPSHOT
+ 0.9
moquette-performance
diff --git a/pom.xml b/pom.xml
index 1ffe94151..234e00bc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
moquette-parent
pom
- 0.9-SNAPSHOT
+ 0.9
Moquette MQTT
Moquette lightweight MQTT Broker
2011
diff --git a/tools_scripts/integration/brokerEmbeddedTest.groovy b/tools_scripts/integration/brokerEmbeddedTest.groovy
index 5a73a2680..031be304a 100644
--- a/tools_scripts/integration/brokerEmbeddedTest.groovy
+++ b/tools_scripts/integration/brokerEmbeddedTest.groovy
@@ -1,5 +1,5 @@
@GrabResolver(name='moquette-bintray', root='http://dl.bintray.com/andsel/maven/')
-@Grab(group='io.moquette', module='moquette-broker', version='0.9-SNAPSHOT')
+@Grab(group='io.moquette', module='moquette-broker', version='0.9')
import io.moquette.server.Server