a5eb235881
Add support for the MQTT Notification Plugin (https://wiki.jenkins-ci.org/display/JENKINS/MQTT+Notification+Plugin) Change-Id: Ibe867a15f5621601a45c2e1d6281f4db67df29d7
14 lines
442 B
XML
14 lines
442 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<publishers>
|
|
<jenkins.plugins.mqttnotification.MqttNotifier plugin="mqtt-notification-plugin">
|
|
<brokerUrl>tcp://localhost:1883</brokerUrl>
|
|
<credentialsId>abcde</credentialsId>
|
|
<topic>hello</topic>
|
|
<message>world</message>
|
|
<qos>2</qos>
|
|
<retainMessage>true</retainMessage>
|
|
</jenkins.plugins.mqttnotification.MqttNotifier>
|
|
</publishers>
|
|
</project>
|