Skip to content

Instantly share code, notes, and snippets.

@benedekh
Last active January 29, 2016 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benedekh/c5a981cc480eea96ea98 to your computer and use it in GitHub Desktop.
Save benedekh/c5a981cc480eea96ea98 to your computer and use it in GitHub Desktop.
pom.xml for the MQTT Client samples
<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>
<groupId>mqtt.demo</groupId>
<artifactId>mqtt.demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<repositories>
<repository>
<id>Eclipse Paho Repo</id>
<url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment