Skip to content

Commit 2c8d12d

Browse files
committed
Document MQTT binding compat
Signed-off-by: Dan Nixon <[email protected]> (GitHub: DanNixon)
1 parent bd44deb commit 2c8d12d

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

distribution/pom.xml

+11-1
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,11 @@
315315
<artifactId>org.openhab.binding.modbus</artifactId>
316316
<version>${oh1.version}</version>
317317
</dependency>
318+
<dependency>
319+
<groupId>org.openhab.binding</groupId>
320+
<artifactId>org.openhab.binding.mqtt</artifactId>
321+
<version>${oh1.version}</version>
322+
</dependency>
318323
<dependency>
319324
<groupId>org.openhab.binding</groupId>
320325
<artifactId>org.openhab.binding.networkhealth</artifactId>
@@ -467,7 +472,12 @@
467472
<groupId>org.openhab.io</groupId>
468473
<artifactId>org.openhab.io.multimedia.tts.marytts</artifactId>
469474
<version>${oh1.version}</version>
470-
</dependency>
475+
</dependency>
476+
<dependency>
477+
<groupId>org.openhab.io</groupId>
478+
<artifactId>org.openhab.io.transport.mqtt</artifactId>
479+
<version>${oh1.version}</version>
480+
</dependency>
471481
</dependencies>
472482

473483
<repositories>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# URL to the MQTT broker, e.g. tcp://localhost:1883 or ssl://localhost:8883
2+
#<broker>.url=tcp://localhost:1883
3+
4+
# Optional. Client id (max 23 chars) to use when connecting to the broker.
5+
# If not provided a default one is generated.
6+
#<broker>.clientId=<clientid>
7+
8+
# Optional. User id to authenticate with the broker.
9+
#<broker>.user=<username>
10+
11+
# Optional. Password to authenticate with the broker.
12+
#<broker>.pwd=<password>
13+
14+
# Optional. Set the quality of service level for sending messages to this broker.
15+
# Possible values are 0 (Deliver at most once),1 (Deliver at least once) or 2
16+
# (Deliver exactly once). Defaults to 0.
17+
#<broker>.qos=<qos>
18+
19+
# Optional. True or false. Defines if the broker should retain the messages sent to
20+
# it. Defaults to false.
21+
#<broker>.retain=<retain>
22+
23+
# Optional. True or false. Defines if messages are published asynchronously or
24+
# synchronously. Defaults to true.
25+
#<broker>.async=<async>
26+
27+
# Optional. Defines the last will and testament that is sent when this client goes offline
28+
# Format: topic:message:qos:retained <br/>
29+
#<broker>.lwt=<last will definition>

docs/sources/addons.md

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ All optional add-ons for openHAB 2 are [available in a separate download](https:
5959
| LCN | Binding |
6060
| Milight | Binding |
6161
| Modbus | Binding |
62+
| MQTT | Binding |
6263
| Networkhealth | Binding |
6364
| Nibeheatpump | Binding |
6465
| NTP | Binding |

0 commit comments

Comments
 (0)