Skip to content

Commit

Permalink
Bumped release 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel committed Jun 27, 2017
1 parent ae9c6c7 commit 0480260
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
```
Expand Down Expand Up @@ -58,7 +58,7 @@ Include dependency in your project:
<dependency>
<groupId>io.moquette</groupId>
<artifactId>moquette-broker</artifactId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion broker/pom.xml
Expand Up @@ -5,7 +5,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>moquette-broker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/server/Server.java
Expand Up @@ -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));
}
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Expand Up @@ -6,7 +6,7 @@
<!--<relativePath>../pom.xml</relativePath>-->
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>distribution</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion embedding_moquette/pom.xml
Expand Up @@ -5,7 +5,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>moquette-embedded-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion h2_storage/pom.xml
Expand Up @@ -5,7 +5,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>moquette-h2-storage</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mapdb_storage/pom.xml
Expand Up @@ -5,7 +5,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>moquette-mapdb-storage</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion osgi_test/pom.xml
Expand Up @@ -5,7 +5,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>moquette-osgi-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion perf/pom.xml
Expand Up @@ -6,7 +6,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
</parent>

<artifactId>moquette-performance</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -14,7 +14,7 @@
<artifactId>moquette-parent</artifactId>

<packaging>pom</packaging>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
<name>Moquette MQTT</name>
<description>Moquette lightweight MQTT Broker</description>
<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions 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

Expand All @@ -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()
server.stopServer()

0 comments on commit 0480260

Please sign in to comment.