robotframework-mqttlibrary-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.randomsync</groupId> <artifactId>robotframework-mqttlibrary-java</artifactId> <version>0.1.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>net.randomsync</groupId> <artifactId>robotframework-mqttlibrary-java</artifactId> <version>0.1.0</version> <packaging>jar</packaging> <name>robotframework-mqttlibrary-java</name> <description>MQTT keyword library for RobotFramework</description> <url>https://github.com/randomsync/robotframework-mqttlibrary-java</url> <repositories> <repository> <id>Eclipse Paho Repo</id> <url>https://repo.eclipse.org/content/repositories/paho-releases/</url> </repository> </repositories> <scm> <connection>scm:git:git://github.com/randomsync/robotframework-mqttlibrary-java.git</connection> <developerConnection>scm:git:git@github.com:randomsync/robotframework-mqttlibrary-java.git</developerConnection> <url>https://github.com/randomsync/robotframework-mqttlibrary-java</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Gaurav Gupta</name> <email>gaurav@randomsync.net</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.robotframework</groupId> <artifactId>robotframework-maven-plugin</artifactId> <version>1.4.3</version> <executions> <execution> <goals> <goal>run</goal> </goals> <configuration> <variables> <variable>broker.uri:tcp://iot.eclipse.org:1883</variable> </variables> </configuration> </execution> </executions> <configuration> <libdoc> <outputFile>MQTTLibrary.html</outputFile> <version>${project.version}</version> <libraryOrResourceFile>MQTTLibrary</libraryOrResourceFile> </libdoc> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>UseLocalBroker</id> <build> <plugins> <plugin> <groupId>org.robotframework</groupId> <artifactId>robotframework-maven-plugin</artifactId> <version>1.4.3</version> <executions> <execution> <phase>integration-test</phase> <goals> <goal>run</goal> </goals> <configuration> <variables> <variable>broker.uri:tcp://127.0.0.1:1883</variable> </variables> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.eclipse.paho</groupId> <artifactId>org.eclipse.paho.client.mqttv3</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.robotframework</groupId> <artifactId>javalib-core</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.robotframework</groupId> <artifactId>robotframework</artifactId> <version>2.8.6</version> </dependency> </dependencies> </project>