xbee-api-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.autofrog.xbee</groupId>
<artifactId>xbee-api-java</artifactId>
<version>0.1.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>com.autofrog.xbee</groupId>
<artifactId>xbee-api-java</artifactId>
<version>0.1.3</version>
<name>xbee-api-java</name>
<description>A library for parsing xbee api messages</description>
<url>https://github.com/wz2b/xbee-api-java</url>
<licenses>
<license>
<name>LGPL-2.1</name>
<url>http://www.opensource.org/licenses/lgpl-2.1.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Christopher Piggott</name>
<email>cpiggott@gmail.com</email>
<organizationUrl>https://github.com/wz2b</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:wz2b/xbee-api-java.git</connection>
<url>scm:git:git@github.com:wz2b/xbee-api-java.git</url>
<tag>xbee-api-java-0.1.2</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>