Skip to content

Commit

Permalink
Bumped release 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel committed Jan 17, 2016
1 parent 4c1f36c commit a44d6b0
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Include dependency in your project:
<dependency>
<groupId>io.moquette</groupId>
<artifactId>moquette-broker</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>moquette-broker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/server/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,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.8-SNAPSHOT");
System.out.println("Server started, version 0.8");
//Bind a shutdown hook
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!--<relativePath>../pom.xml</relativePath>-->
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

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

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

<artifactId>moquette-netty-parser</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion parser_commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<relativePath>../</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>moquette-parser-commons</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<artifactId>moquette-parent</artifactId>

<packaging>pom</packaging>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
<name>Moquette MQTT parent</name>
<url>https://github.com/andsel/moquette/</url>

Expand Down
2 changes: 1 addition & 1 deletion tools_scripts/integration/brokerEmbeddedTest.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@GrabResolver(name='moquette-bintray', root='http://dl.bintray.com/andsel/maven/')
@Grab(group='io.moquette', module='moquette-broker', version='0.8-SNAPSHOT')
@Grab(group='io.moquette', module='moquette-broker', version='0.8')

import io.moquette.server.Server

Expand Down

0 comments on commit a44d6b0

Please sign in to comment.