Skip to content

Commit

Permalink
Bumped version 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel committed Jan 11, 2017
1 parent ac8a11f commit 4162aae
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -55,7 +55,7 @@ Include dependency in your project:
<dependency>
<groupId>io.moquette</groupId>
<artifactId>moquette-broker</artifactId>
<version>0.8.1</version>
<version>0.9</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion broker/pom.xml
Expand Up @@ -6,7 +6,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.9-SNAPSHOT</version>
<version>0.9</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 @@ -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
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.9-SNAPSHOT</version>
<version>0.9</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.9-SNAPSHOT</version>
<version>0.9</version>
</parent>

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

<artifactId>moquette-netty-parser</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.9-SNAPSHOT</version>
<version>0.9</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.9-SNAPSHOT</version>
<version>0.9</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.9-SNAPSHOT</version>
<version>0.9</version>
<name>Moquette MQTT</name>
<description>Moquette lightweight MQTT Broker</description>
<inceptionYear>2011</inceptionYear>
Expand Down
2 changes: 1 addition & 1 deletion 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

Expand Down

0 comments on commit 4162aae

Please sign in to comment.