Skip to content

Commit

Permalink
version 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Spector committed Aug 11, 2014
1 parent ae827ff commit 4de12ad
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>pentaho-mqtt-client</name>
<name>pentaho-mqtt-producer</name>
<comment></comment>
<projects>
</projects>
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
pentaho-mqtt-client
pentaho-mqtt-producer
======================

MQTT client step plug-in for Pentaho Kettle.
MQTT producer step plug-in for Pentaho Kettle.

[![Build Status](https://travis-ci.org/RuckusWirelessIL/pentaho-mqtt-client.png)](https://travis-ci.org/RuckusWirelessIL/pentaho-mqtt-client)
[![Build Status](https://travis-ci.org/RuckusWirelessIL/pentaho-mqtt-producer.png)](https://travis-ci.org/RuckusWirelessIL/pentaho-mqtt-producer)


### Screenshots ###

![Using MQTT Client step in Kettle](https://raw.github.com/RuckusWirelessIL/pentaho-mqtt-client/master/doc/example.png)
![Using MQTT Client step in Kettle](https://raw.github.com/RuckusWirelessIL/pentaho-mqtt-producer/master/doc/example.png)


### Installation ###

1. Download ```pentaho-mqtt-client``` Zip archive from [latest release page](https://github.com/RuckusWirelessIL/pentaho-mqtt-client/releases/latest).
1. Download ```pentaho-mqtt-producer``` Zip archive from [latest release page](https://github.com/RuckusWirelessIL/pentaho-mqtt-producer/releases/latest).
2. Extract downloaded archive into *plugins/steps* directory of your Pentaho Data Integration distribution.


Expand Down
1 change: 1 addition & 0 deletions assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<directory>target/lib</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>mqtt-client-0.4.0.jar</include>
</includes>
</fileSet>
<fileSet>
Expand Down
Binary file modified doc/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<modelVersion>4.0.0</modelVersion>
<groupId>com.ruckuswireless</groupId>
<artifactId>pentaho-mqtt-client</artifactId>
<artifactId>pentaho-mqtt-producer</artifactId>
<version>TRUNK-SNAPSHOT</version>
<name>MQTT Client Plug-In for Pentaho</name>
<name>MQTT Producer Plug-In for Pentaho</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -58,6 +58,11 @@
<version>4.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>mqtt-client</artifactId>
<version>0.4.0</version>
</dependency>
</dependencies>


Expand Down
Binary file modified src/main/resources/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions src/main/resources/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin
id="MQTTClient"
id="MQTTProducer"
iconfile="logo.png"
description="MQTT Client"
description="MQTT Producer"
tooltip="This plug-in allows sending messages via MQTT client"
category="Output"
classname="com.ruckuswireless.pentaho.mqtt.client.MQTTClientMeta">
classname="com.ruckuswireless.pentaho.mqtt.producer.MQTTProducerMeta">

<libraries>
<library name="pentaho-kafka-producer.jar"/>
<library name="lib/activation-1.1.jar"/>
<library name="pentaho-mqtt-producer.jar"/>
<library name="lib/mqtt-client-0.4.0.jar"/>
</libraries>

<localized_category>
<category locale="en_US">Output</category>
</localized_category>
<localized_description>
<description locale="en_US">MQTT Client</description>
<description locale="en_US">MQTT Producer</description>
</localized_description>
<localized_tooltip>
<tooltip locale="en_US">This plug-in allows sending messages via MQTT client</tooltip>
Expand Down

0 comments on commit 4de12ad

Please sign in to comment.