2020-04-09 03:30:04 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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-circuit-breaker</artifactId>
|
2020-06-27 15:40:13 -04:00
|
|
|
<name>spring-cloud-circuit-breaker</name>
|
2020-04-09 03:30:04 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2020-06-28 09:50:41 -04:00
|
|
|
<id>spring-release</id>
|
|
|
|
<name>Spring Release</name>
|
2020-06-27 14:44:24 -04:00
|
|
|
<url>https://repo.spring.io/release</url>
|
2020-04-09 03:30:04 -04:00
|
|
|
<snapshots>
|
2020-06-28 09:50:41 -04:00
|
|
|
<enabled>false</enabled>
|
2020-04-09 03:30:04 -04:00
|
|
|
</snapshots>
|
|
|
|
<releases>
|
2020-06-28 09:50:41 -04:00
|
|
|
<enabled>true</enabled>
|
2020-04-09 03:30:04 -04:00
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
<version>2.2.4.RELEASE</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-circuitbreaker-resilience4j</artifactId>
|
2020-06-20 14:02:32 -04:00
|
|
|
<version>${circuitbreaker-resilience4j.version}</version>
|
2020-04-09 03:30:04 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2020-06-20 14:02:32 -04:00
|
|
|
<properties>
|
|
|
|
<circuitbreaker-resilience4j.version>1.0.2.RELEASE</circuitbreaker-resilience4j.version>
|
|
|
|
</properties>
|
|
|
|
|
2020-04-09 03:30:04 -04:00
|
|
|
</project>
|