pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.bj1890</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-sentinel</artifactId>
  13. <description>sentinel服务降级熔断、限流组件</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.bj1890</groupId>
  17. <artifactId>avenue-common-core</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba.cloud</groupId>
  21. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  22. </dependency>
  23. <!--feign 依赖-->
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-openfeign</artifactId>
  27. </dependency>
  28. <!-- okhttp 扩展 -->
  29. <dependency>
  30. <groupId>io.github.openfeign</groupId>
  31. <artifactId>feign-okhttp</artifactId>
  32. </dependency>
  33. <!--oauth server 依赖-->
  34. <dependency>
  35. <groupId>org.springframework.security</groupId>
  36. <artifactId>spring-security-core</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>