telldus-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ezand.telldus</groupId> <artifactId>telldus-core</artifactId> <version>1.4</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"> <parent> <groupId>org.ezand</groupId> <artifactId>parent</artifactId> <version>1.4</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.ezand.telldus</groupId> <artifactId>telldus-core</artifactId> <version>1.4</version> <name>Telldus - Core</name> <description>Core classes for the Telldus Java wrapper</description> <properties> <guava.version>18.0</guava.version> <commons-lang3.version>3.4</commons-lang3.version> <junit.version>4.12</junit.version> <hamcrest.version>1.3</hamcrest.version> </properties> <issueManagement> <url>https://github.com/ezand/telldus-core/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <connection>scm:git:git@github.com:ezand/telldus-core.git</connection> <url>scm:git:git@github.com:ezand/telldus-core.git</url> <developerConnection>scm:git:git@github.com:ezand/telldus-core.git</developerConnection> <tag>telldus-core-1.4</tag> </scm> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>${hamcrest.version}</version> </dependency> </dependencies> </dependencyManagement> </project>