<?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>

    <parent>
        <groupId>com.chelvc.framework</groupId>
        <artifactId>framework-dependencies</artifactId>
        <version>1.0.0-RELEASE</version>
        <relativePath/>
    </parent>

    <artifactId>framework-feign-circuitbreaker</artifactId>
    <version>1.0.0-RELEASE</version>

    <properties>
        <framework-base.version>1.0.0-RELEASE</framework-base.version>
        <resilience4j-spring-boot2.version>1.7.0</resilience4j-spring-boot2.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.chelvc.framework</groupId>
            <artifactId>framework-base</artifactId>
            <version>${framework-base.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-openfeign-core</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.cloud</groupId>
                    <artifactId>spring-cloud-netflix-ribbon</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>io.github.resilience4j</groupId>
            <artifactId>resilience4j-spring-boot2</artifactId>
            <version>${resilience4j-spring-boot2.version}</version>
        </dependency>
    </dependencies>
</project>