seninel部署
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

68 linhas
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>0.2.0-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-grpc-adapter</module>
  18. </modules>
  19. <properties>
  20. <servlet.api.version>3.1.0</servlet.api.version>
  21. <dubbo.version>2.5.8</dubbo.version>
  22. <grpc.version>1.13.1</grpc.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.alibaba.csp</groupId>
  28. <artifactId>sentinel-core</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba.csp</groupId>
  33. <artifactId>sentinel-extension</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>javax.servlet</groupId>
  38. <artifactId>javax.servlet-api</artifactId>
  39. <version>${servlet.api.version}</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>dubbo</artifactId>
  45. <version>${dubbo.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. <version>${junit.version}</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.mockito</groupId>
  55. <artifactId>mockito-core</artifactId>
  56. <version>${mockito.version}</version>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. </dependencyManagement>
  61. </project>