etcd-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>at.molindo</groupId>
<artifactId>etcd-client</artifactId>
<version>0.1.2</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>at.molindo</groupId>
<artifactId>etcd-client</artifactId>
<version>0.1.2</version>
<name>etcd Java client</name>
<description>Simple Java client to interact with CoreOS's etcd</description>
<url>https://github.com/molindo/jetcd</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.spdx.org/licenses/Apache-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>justinsb</id>
<email>justin@justinsb.com</email>
<name>Justin Santa Barbara</name>
<timezone>PST</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:molindo/jetcd.git</connection>
<developerConnection>scm:git:git@github.com:molindo/jetcd.git</developerConnection>
<url>git@github.com:molindo/jetcd.git</url>
</scm>
<properties>
<artifactTargetPath>${project.build.directory}</artifactTargetPath>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>4.0.1</version>
<exclusions>
<exclusion>
<!-- use jcl-over-slf4j instead -->
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>13.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.8</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.5.8</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.5.8</version>
<scope>test</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>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<xmlOutput>true</xmlOutput>
<xmlOutputDirectory>${artifactTargetPath}</xmlOutputDirectory>
<findbugsXmlOutputDirectory>${artifactTargetPath}</findbugsXmlOutputDirectory>
</configuration>
</plugin>
</plugins>
</reporting>
</project>