spring-cloud-cluster-etcd
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-cluster-etcd</artifactId> <version>1.0.2.RELEASE</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> <artifactId>spring-cloud-cluster-etcd</artifactId> <packaging>jar</packaging> <name>spring-cloud-cluster-etcd</name> <description>Spring Cloud Cluster Etcd</description> <parent> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-cluster</artifactId> <version>1.0.2.RELEASE</version> <relativePath>..</relativePath> </parent> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-cluster-core</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.mousio</groupId> <artifactId>etcd4j</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>