seninel部署
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

65 lignes
2.4KB

  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.5.1-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. </modules>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.alibaba.csp</groupId>
  27. <artifactId>sentinel-core</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba.csp</groupId>
  32. <artifactId>sentinel-extension</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba.csp</groupId>
  37. <artifactId>sentinel-web-servlet</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba.csp</groupId>
  42. <artifactId>sentinel-reactor-adapter</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>${junit.version}</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mockito</groupId>
  53. <artifactId>mockito-core</artifactId>
  54. <version>${mockito.version}</version>
  55. <scope>test</scope>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. </project>