Skip to content

Commit

Permalink
Merge pull request #345 from hivemq/develop
Browse files Browse the repository at this point in the history
Release 1.1.3
  • Loading branch information
SgtSilvio committed Nov 20, 2019
2 parents e0c677f + d2b4aeb commit 637aa02
Show file tree
Hide file tree
Showing 63 changed files with 2,458 additions and 854 deletions.
10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
.gradle
/out/
/build/
.DS_Store
out/
build/

*.iml
.idea/*
!.idea/codeStyles
!.idea/inspectionProfiles

.DS_Store
.java-version
credentials.gradle
bintray.gradle
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ stages:
- name: release
if: branch = master && type != pull_request

install: skip
script: ./gradlew check javadoc

jobs:
include:
- stage: release
install: true
script: ./gradlew bintrayUpload -x test
install: skip
script: ./gradlew bintrayUpload githubRelease
jdk: oraclejdk8

addons:
apt:
Expand Down
29 changes: 18 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# HiveMQ MQTT Client
<p align="center">
<img src="https://www.hivemq.com/img/svg/hivemq-mqtt-client.svg" width="500">
</p>

<img src="https://www.hivemq.com/img/svg/hivemq-mqtt-client.svg" width="500">
# HiveMQ MQTT Client

[![Build Status](https://travis-ci.org/hivemq/hivemq-mqtt-client.svg?branch=develop)](https://travis-ci.org/hivemq/hivemq-mqtt-client)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.hivemq/hivemq-mqtt-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.hivemq/hivemq-mqtt-client)
Expand All @@ -9,9 +11,14 @@
MQTT 5.0 and 3.1.1 compatible and feature-rich high-performance Java client library with different API flavours and
backpressure support.

## Documentation

A detailed documentation can be found [here](https://hivemq.github.io/hivemq-mqtt-client)
- Documentation: https://hivemq.github.io/hivemq-mqtt-client/
- Community forum: https://community.hivemq.com/
- HiveMQ website: https://www.hivemq.com/
- Contribution guidelines: [CONTRIBUTING.md](CONTRIBUTING.md)
- License: [LICENSE](LICENSE)
- MQTT resources:
- [MQTT Essentials](https://www.hivemq.com/mqtt-essentials/)
- [MQTT 5 Essentials](https://www.hivemq.com/mqtt-5/)

## Features

Expand Down Expand Up @@ -47,7 +54,7 @@ If you use Gradle, just include the following inside your `build.gradle` file.

```groovy
dependencies {
compile group: 'com.hivemq', name: 'hivemq-mqtt-client', version: '1.1.2'
compile group: 'com.hivemq', name: 'hivemq-mqtt-client', version: '1.1.3'
}
```

Expand All @@ -69,7 +76,7 @@ NOTE: You have to set the compiler version to `1.8` or higher.
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
</dependency>
</dependencies>
...
Expand All @@ -86,7 +93,7 @@ To use the shaded version just append `-shaded` to the artifact name.

```groovy
dependencies {
compile group: 'com.hivemq', name: 'hivemq-mqtt-client-shaded', version: '1.1.2'
compile group: 'com.hivemq', name: 'hivemq-mqtt-client-shaded', version: '1.1.3'
}
```

Expand All @@ -99,7 +106,7 @@ dependencies {
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client-shaded</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
</dependency>
</dependencies>
...
Expand Down Expand Up @@ -591,8 +598,8 @@ classes.

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md)
If you want to contribute to HiveMQ MQTT Client, see the [contribution guidelines](CONTRIBUTING.md).

## License

See [LICENSE](LICENSE)
HiveMQ MQTT Client is licensed under the `APACHE LICENSE, VERSION 2.0`. A copy of the license can be found [here](LICENSE).
Loading

0 comments on commit 637aa02

Please sign in to comment.