@@ -102,18 +102,18 @@ If you use Gradle, just include the following inside your `build.gradle` file.
102102
103103``` groovy
104104dependencies {
105- implementation group: 'com.hivemq', name: 'hivemq-mqtt-client ', version: '1.2.1 '
105+ implementation group: 'com.hivemq', name: 'hivemq-mqtt-client2 ', version: '2.0.0 '
106106}
107107```
108108
109109For optional features you can choose to include additional modules:
110110
111111``` groovy
112112dependencies {
113- implementation group: 'com.hivemq', name: 'hivemq-mqtt-client -websocket', version: '1.2.1 '
114- implementation group: 'com.hivemq', name: 'hivemq-mqtt-client -proxy', version: '1.2.1 '
115- implementation group: 'com.hivemq', name: 'hivemq-mqtt-client -epoll', version: '1.2.1 '
116- implementation group: 'com.hivemq', name: 'hivemq-mqtt-client -reactor', version: '1.2.1 '
113+ implementation group: 'com.hivemq', name: 'hivemq-mqtt-client2 -websocket', version: '2.0.0 '
114+ implementation group: 'com.hivemq', name: 'hivemq-mqtt-client2 -proxy', version: '2.0.0 '
115+ implementation group: 'com.hivemq', name: 'hivemq-mqtt-client2 -epoll', version: '2.0.0 '
116+ implementation group: 'com.hivemq', name: 'hivemq-mqtt-client2 -reactor', version: '2.0.0 '
117117}
118118```
119119
@@ -127,8 +127,8 @@ If you use Maven, just include the following inside your `pom.xml` file.
127127 <dependencies >
128128 <dependency >
129129 <groupId >com.hivemq</groupId >
130- <artifactId >hivemq-mqtt-client </artifactId >
131- <version >1.2.1 </version >
130+ <artifactId >hivemq-mqtt-client2 </artifactId >
131+ <version >2.0.0 </version >
132132 </dependency >
133133 </dependencies >
134134 ...
@@ -156,32 +156,32 @@ For optional features you can choose to include additional modules:
156156 <dependencies >
157157 <dependency >
158158 <groupId >com.hivemq</groupId >
159- <artifactId >hivemq-mqtt-client -websocket</artifactId >
160- <version >1.2.1 </version >
159+ <artifactId >hivemq-mqtt-client2 -websocket</artifactId >
160+ <version >2.0.0 </version >
161161 <type >pom</type >
162162 </dependency >
163163 </dependencies >
164164 <dependencies >
165165 <dependency >
166166 <groupId >com.hivemq</groupId >
167- <artifactId >hivemq-mqtt-client -proxy</artifactId >
168- <version >1.2.1 </version >
167+ <artifactId >hivemq-mqtt-client2 -proxy</artifactId >
168+ <version >2.0.0 </version >
169169 <type >pom</type >
170170 </dependency >
171171 </dependencies >
172172 <dependencies >
173173 <dependency >
174174 <groupId >com.hivemq</groupId >
175- <artifactId >hivemq-mqtt-client -epoll</artifactId >
176- <version >1.2.1 </version >
175+ <artifactId >hivemq-mqtt-client2 -epoll</artifactId >
176+ <version >2.0.0 </version >
177177 <type >pom</type >
178178 </dependency >
179179 </dependencies >
180180 <dependencies >
181181 <dependency >
182182 <groupId >com.hivemq</groupId >
183- <artifactId >hivemq-mqtt-client -reactor</artifactId >
184- <version >1.2.1 </version >
183+ <artifactId >hivemq-mqtt-client2 -reactor</artifactId >
184+ <version >2.0.0 </version >
185185 </dependency >
186186 </dependencies >
187187 ...
@@ -199,7 +199,7 @@ To use the shaded version just append `-shaded` to the artifact name.
199199
200200``` groovy
201201dependencies {
202- implementation group: 'com.hivemq', name: 'hivemq-mqtt-client -shaded', version: '1.2.1 '
202+ implementation group: 'com.hivemq', name: 'hivemq-mqtt-client2 -shaded', version: '2.0.0 '
203203}
204204```
205205
@@ -211,8 +211,8 @@ dependencies {
211211 <dependencies >
212212 <dependency >
213213 <groupId >com.hivemq</groupId >
214- <artifactId >hivemq-mqtt-client -shaded</artifactId >
215- <version >1.2.1 </version >
214+ <artifactId >hivemq-mqtt-client2 -shaded</artifactId >
215+ <version >2.0.0 </version >
216216 </dependency >
217217 </dependencies >
218218 ...
@@ -232,13 +232,13 @@ repositories {
232232}
233233
234234dependencies {
235- implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client :develop-SNAPSHOT'
235+ implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client2 :develop-SNAPSHOT'
236236
237237 // snapshots for optional modules
238- implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client -websocket:develop-SNAPSHOT'
239- implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client -proxy:develop-SNAPSHOT'
240- implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client -epoll:develop-SNAPSHOT'
241- implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client -reactor:develop-SNAPSHOT'
238+ implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client2 -websocket:develop-SNAPSHOT'
239+ implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client2 -proxy:develop-SNAPSHOT'
240+ implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client2 -epoll:develop-SNAPSHOT'
241+ implementation 'com.github.hivemq.hivemq-mqtt-client:hivemq-mqtt-client2 -reactor:develop-SNAPSHOT'
242242}
243243```
244244
@@ -257,7 +257,7 @@ dependencies {
257257 <dependencies >
258258 <dependency >
259259 <groupId >com.github.hivemq.hivemq-mqtt-client</groupId >
260- <artifactId >hivemq-mqtt-client </artifactId >
260+ <artifactId >hivemq-mqtt-client2 </artifactId >
261261 <version >develop-SNAPSHOT</version >
262262 </dependency >
263263 </dependencies >
@@ -266,39 +266,39 @@ dependencies {
266266 <dependencies >
267267 <dependency >
268268 <groupId >com.github.hivemq.hivemq-mqtt-client</groupId >
269- <artifactId >hivemq-mqtt-client -websocket</artifactId >
269+ <artifactId >hivemq-mqtt-client2 -websocket</artifactId >
270270 <version >develop-SNAPSHOT</version >
271271 <type >pom</type >
272272 </dependency >
273273 </dependencies >
274274 <dependencies >
275275 <dependency >
276276 <groupId >com.github.hivemq.hivemq-mqtt-client</groupId >
277- <artifactId >hivemq-mqtt-client -proxy</artifactId >
277+ <artifactId >hivemq-mqtt-client2 -proxy</artifactId >
278278 <version >develop-SNAPSHOT</version >
279279 <type >pom</type >
280280 </dependency >
281281 </dependencies >
282282 <dependencies >
283283 <dependency >
284284 <groupId >com.github.hivemq.hivemq-mqtt-client</groupId >
285- <artifactId >hivemq-mqtt-client -epoll</artifactId >
285+ <artifactId >hivemq-mqtt-client2 -epoll</artifactId >
286286 <version >develop-SNAPSHOT</version >
287287 <type >pom</type >
288288 </dependency >
289289 </dependencies >
290290 <dependencies >
291291 <dependency >
292292 <groupId >com.github.hivemq.hivemq-mqtt-client</groupId >
293- <artifactId >hivemq-mqtt-client -reactor</artifactId >
293+ <artifactId >hivemq-mqtt-client2 -reactor</artifactId >
294294 <version >develop-SNAPSHOT</version >
295295 </dependency >
296296 </dependencies >
297297 ...
298298</project >
299299```
300300
301- Change the artifact name to ` hivemq-mqtt-client -shaded ` to get snapshots of the shaded version.
301+ Change the artifact name to ` hivemq-mqtt-client2 -shaded ` to get snapshots of the shaded version.
302302
303303JitPack works for all branches and also specific commits.
304304Just specify ` <branch>-SNAPSHOT ` or the first 10 digits of the commit id in the version.
@@ -735,7 +735,7 @@ API but return `Completable`.
735735
736736[ Semantic Versioning] ( https://semver.org/ ) is used.
737737
738- All code inside ` com.hivemq.client .internal ` packages must not be used directly. It can change at any time and is not
738+ All code inside ` com.hivemq.client2 .internal ` packages must not be used directly. It can change at any time and is not
739739part of the public API.
740740
741741Interfaces annotated with ` DoNotImplement ` must not be implemented. The implementation is provided by the library.
0 commit comments