pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.chelvc.framework</groupId>
  8. <artifactId>framework-dependencies</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-feign-circuitbreaker</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <properties>
  15. <framework-base.version>1.0.0-RELEASE</framework-base.version>
  16. <resilience4j-spring-boot2.version>1.7.0</resilience4j-spring-boot2.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.chelvc.framework</groupId>
  21. <artifactId>framework-base</artifactId>
  22. <version>${framework-base.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-openfeign-core</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-netflix-ribbon</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.github.resilience4j</groupId>
  36. <artifactId>resilience4j-spring-boot2</artifactId>
  37. <version>${resilience4j-spring-boot2.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </project>