You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update project dependencies
- Netty 4.1.73.Final
- Netty TC native 2.0.46.Final
- slf4j 1.7.25
Aligns CI:
- switch build branch from master to main
- update JDK matrix to test against 11 and 17
Update versions used in README
*[Documentation reference guide](http://moquette-io.github.io/moquette/) Guide on how to use and configure Moquette
8
8
*[Google Group](https://groups.google.com/forum/#!forum/moquette-mqtt) Google Group to participate in development discussions.
@@ -20,17 +20,13 @@ Moquette is also used into [Atomize Spin](http://atomizesoftware.com/spin) a sof
20
20
Part of moquette are used into the [Vertx MQTT module](https://github.com/giovibal/vertx-mqtt-broker-mod), into [MQTT spy](http://kamilfb.github.io/mqtt-spy/)
21
21
and into [WSO2 Messge broker](http://techexplosives-pamod.blogspot.it/2014/05/mqtt-transport-architecture-wso2-mb-3x.html).
22
22
23
-
## Try the demo instance
24
-
25
-
Point your browser to [cloud instance](http://broker.moquette.io), request an account then use it from your MQTT clients.
26
-
27
23
## 1 minute set up
28
24
29
-
Start play with it, download the self distribution tar from [BinTray](https://bintray.com/artifact/download/andsel/generic/moquette-0.14.tar.gz) ,
25
+
Start play with it, download the self distribution tar from [BinTray](https://bintray.com/artifact/download/andsel/generic/moquette-0.15.tar.gz) ,
30
26
the un untar and start the broker listening on `1883` port and enjoy!
31
27
32
28
```
33
-
tar xvf moquette-distribution-0.14.tar.gz
29
+
tar xvf moquette-distribution-0.15.tar.gz
34
30
cd bin
35
31
./moquette.sh
36
32
```
@@ -44,38 +40,19 @@ Or if you are on Windows shell
44
40
45
41
## Embedding in other projects
46
42
47
-
To embed Moquette in another maven project is sufficient to include a repository and declare the dependency:
48
-
49
-
```
50
-
<repositories>
51
-
<repository>
52
-
<id>bintray</id>
53
-
<url>https://jcenter.bintray.com</url>
54
-
<releases>
55
-
<enabled>true</enabled>
56
-
</releases>
57
-
<snapshots>
58
-
<enabled>false</enabled>
59
-
</snapshots>
60
-
</repository>
61
-
</repositories>
62
-
```
63
-
64
43
Include dependency in your project:
65
44
66
45
```
67
46
<dependency>
68
47
<groupId>io.moquette</groupId>
69
48
<artifactId>moquette-broker</artifactId>
70
-
<version>0.14</version>
49
+
<version>0.15</version>
71
50
</dependency>
72
51
```
73
52
74
53
## Build from sources
75
54
55
+
After a git clone of the repository, cd into the cloned sources and: `./gradlew package`, at the end the distribution
56
+
package is present at `distribution/target/distribution-0.16-SNAPSHOT-bundle.tar.gz`
76
57
77
-
After a git clone of the repository, cd into the cloned sources and: `./gradlew clean moquette-distribution:distMoquetteTar` or
0 commit comments