wzwave
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.whizzosoftware</groupId> <artifactId>wzwave</artifactId> <version>0.0.3</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.whizzosoftware</groupId> <artifactId>wzwave</artifactId> <packaging>bundle</packaging> <version>0.0.3</version> <name>Whizzo Z-Wave Java Library</name> <description>An open-source, Java-native library for controlling Z-Wave wireless home automation smart devices.</description> <url>https://github.com/whizzosoftware/WZWave</url> <licenses> <license> <name>Eclise Public License, Version 1.0</name> <url>https://www.eclipse.org/legal/epl-v10.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Dan Noguerol</name> <email>oss@whizzosoftware.com</email> <organization>Whizzo Software LLC</organization> <organizationUrl>http://www.whizzosoftware.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/whizzosoftware/WZWave.git</connection> <developerConnection>scm:git:https://github.com/whizzosoftware/WZWave.git</developerConnection> <tag>wzwave-0.0.3</tag> <url>https://github.com/whizzosoftware/WZWave.git</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>4.0.21.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>4.0.21.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec</artifactId> <version>4.0.21.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>4.0.21.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>4.0.21.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-rxtx</artifactId> <version>4.0.21.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.rxtx</groupId> <artifactId>rxtx</artifactId> <version>2.1.7</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> <extensions>true</extensions> <configuration> <instructions> <Import-Package>org.slf4j,io.netty.*,gnu.io.*</Import-Package> <Export-Package>com.whizzosoftware.wzwave.*</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-clover2-plugin</artifactId> <version>4.0.0</version> <configuration> <licenseLocation>${clover.license}</licenseLocation> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>bintray</id> <url>https://api.bintray.com/maven/whizzosoftware/maven/wzwave</url> </repository> </distributionManagement> </project>