pom.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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. <parent>
  6. <groupId>com.emergency</groupId>
  7. <artifactId>avenue-common</artifactId>
  8. <version>4.6.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>avenue-common-feign</artifactId>
  13. <description>feign 通用组件</description>
  14. <dependencies>
  15. <!--feign 依赖-->
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-openfeign</artifactId>
  19. </dependency>
  20. <!-- okhttp 扩展 -->
  21. <dependency>
  22. <groupId>io.github.openfeign</groupId>
  23. <artifactId>feign-okhttp</artifactId>
  24. </dependency>
  25. <!-- LB 扩展 -->
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>