jenkins-job-builder/tests/publishers/fixtures/mqtt-full.xml
mhuin a5eb235881 Add a publisher for MQTT
Add support for the MQTT Notification Plugin
(https://wiki.jenkins-ci.org/display/JENKINS/MQTT+Notification+Plugin)

Change-Id: Ibe867a15f5621601a45c2e1d6281f4db67df29d7
2017-02-27 09:09:29 +00:00

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>