Add hystrix starter

This commit is contained in:
Dave Syer
2014-08-01 14:58:42 -07:00
parent cc67f509c2
commit 180b63def1
5 changed files with 74 additions and 1 deletions

16
pom.xml
View File

@@ -24,6 +24,7 @@
<modules>
<module>spring-platform-starter</module>
<module>spring-platform-starter-eureka</module>
<module>spring-platform-starter-hystrix</module>
</modules>
<dependencyManagement>
<dependencies>
@@ -41,6 +42,21 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-netflix</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-hystrix</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>