seninel部署
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.alibaba.csp</groupId>
  7. <artifactId>sentinel-parent</artifactId>
  8. <version>1.7.2-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>sentinel-adapter</artifactId>
  11. <packaging>pom</packaging>
  12. <name>sentinel-adapter</name>
  13. <description>The adapters of Sentinel</description>
  14. <modules>
  15. <module>sentinel-web-servlet</module>
  16. <module>sentinel-dubbo-adapter</module>
  17. <module>sentinel-apache-dubbo-adapter</module>
  18. <module>sentinel-grpc-adapter</module>
  19. <module>sentinel-zuul-adapter</module>
  20. <module>sentinel-reactor-adapter</module>
  21. <module>sentinel-spring-webflux-adapter</module>
  22. <module>sentinel-api-gateway-adapter-common</module>
  23. <module>sentinel-spring-cloud-gateway-adapter</module>
  24. <module>sentinel-spring-webmvc-adapter</module>
  25. </modules>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.alibaba.csp</groupId>
  30. <artifactId>sentinel-core</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.csp</groupId>
  35. <artifactId>sentinel-extension</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba.csp</groupId>
  40. <artifactId>sentinel-web-servlet</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba.csp</groupId>
  45. <artifactId>sentinel-reactor-adapter</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba.csp</groupId>
  50. <artifactId>sentinel-api-gateway-adapter-common</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. <version>${junit.version}</version>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.mockito</groupId>
  61. <artifactId>mockito-core</artifactId>
  62. <version>${mockito.version}</version>
  63. <scope>test</scope>
  64. </dependency>
  65. </dependencies>
  66. </dependencyManagement>
  67. </project>