Skip to content

Commit

Permalink
Adding spring retry starter
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjbaxter committed Apr 9, 2019
1 parent fd7add5 commit f05d795
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spring-cloud-starter-circuitbreaker/pom.xml
Expand Up @@ -16,8 +16,9 @@
<module>spring-cloud-starter-circuitbreaker-resilience4j</module>
<module>spring-cloud-starter-circuitbreaker-hystrix</module>
<module>spring-cloud-starter-circuitbreaker-sentinel</module>
</modules>
<module>spring-cloud-starter-circuitbreaker-spring-retry</module>
</modules>
<packaging>pom</packaging>


</project>
</project>
@@ -0,0 +1,30 @@
<?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>
<artifactId>spring-cloud-starter-circuitbreaker</artifactId>
<groupId>org.springframework.cloud</groupId>
<version>0.0.1.BUILD-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-cloud-starter-circuitbreaker-spring-retry</artifactId>

<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-circuitbreaker-spring-retry</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
</dependency>
</dependencies>


</project>

0 comments on commit f05d795

Please sign in to comment.