diff --git a/README.md b/README.md index 3bdc12469..151b0030a 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ and into [WSO2 Messge broker] (http://techexplosives-pamod.blogspot.it/2014/05/m Point your MQTT client to _broker.moquette.io_ ## 1 minute set up -Start play with it, download the self distribution tar from [BinTray](https://bintray.com/artifact/download/andsel/generic/distribution-0.8-bundle-tar.tar.gz) , +Start play with it, download the self distribution tar from [BinTray](https://bintray.com/artifact/download/andsel/generic/distribution-0.10-bundle-tar.tar.gz) , the un untar and start the broker listening on 1883 port and enjoy! ``` -tar zxf distribution-0.8-bundle-tar.tar.gz +tar zxf distribution-0.10-bundle-tar.tar.gz cd bin ./moquette.sh ``` @@ -58,7 +58,7 @@ Include dependency in your project: io.moquette moquette-broker - 0.10-SNAPSHOT + 0.10 ``` diff --git a/broker/pom.xml b/broker/pom.xml index e7ba66d87..dfc560e10 100644 --- a/broker/pom.xml +++ b/broker/pom.xml @@ -5,7 +5,7 @@ ../ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 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 37b732a96..76656b8f8 100644 --- a/broker/src/main/java/io/moquette/server/Server.java +++ b/broker/src/main/java/io/moquette/server/Server.java @@ -74,7 +74,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.10-SNAPSHOT"); + System.out.println("Server started, version 0.10"); //Bind a shutdown hook Runtime.getRuntime().addShutdownHook(new Thread(server::stopServer)); } diff --git a/distribution/pom.xml b/distribution/pom.xml index db9f4aa5e..af2e9eb60 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -6,7 +6,7 @@ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 distribution diff --git a/embedding_moquette/pom.xml b/embedding_moquette/pom.xml index d460974dc..ff970f0ec 100644 --- a/embedding_moquette/pom.xml +++ b/embedding_moquette/pom.xml @@ -5,7 +5,7 @@ ../ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 moquette-embedded-test diff --git a/h2_storage/pom.xml b/h2_storage/pom.xml index e13182a4c..f8afdc2b4 100644 --- a/h2_storage/pom.xml +++ b/h2_storage/pom.xml @@ -5,7 +5,7 @@ ../ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 moquette-h2-storage diff --git a/mapdb_storage/pom.xml b/mapdb_storage/pom.xml index 60094757b..04503391a 100644 --- a/mapdb_storage/pom.xml +++ b/mapdb_storage/pom.xml @@ -5,7 +5,7 @@ ../ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 moquette-mapdb-storage diff --git a/osgi_test/pom.xml b/osgi_test/pom.xml index dabc16753..ea79b7f29 100644 --- a/osgi_test/pom.xml +++ b/osgi_test/pom.xml @@ -5,7 +5,7 @@ ../ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 moquette-osgi-test diff --git a/perf/pom.xml b/perf/pom.xml index f048f4c97..999f93ae0 100644 --- a/perf/pom.xml +++ b/perf/pom.xml @@ -6,7 +6,7 @@ ../ moquette-parent io.moquette - 0.10-SNAPSHOT + 0.10 moquette-performance diff --git a/pom.xml b/pom.xml index a7a511b3d..d1f153bc7 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ moquette-parent pom - 0.10-SNAPSHOT + 0.10 Moquette MQTT Moquette lightweight MQTT Broker 2011 diff --git a/tools_scripts/integration/brokerEmbeddedTest.groovy b/tools_scripts/integration/brokerEmbeddedTest.groovy index 49ba6d73f..1f860cb7f 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.10-SNAPSHOT') +@Grab(group='io.moquette', module='moquette-broker', version='0.10') import io.moquette.server.Server @@ -13,4 +13,4 @@ props.setProperty('password_file', '../broker/config/password_file.conf') println "starting proprs $props" server.startServer(props) println "Stopping broker.." -server.stopServer() \ No newline at end of file +server.stopServer()