seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.4KB

  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. <artifactId>sentinel-parent</artifactId>
  7. <groupId>com.alibaba.csp</groupId>
  8. <version>1.8.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <artifactId>sentinel-cluster</artifactId>
  13. <description>The parent module of Sentinel cluster server</description>
  14. <properties>
  15. <netty.version>4.1.48.Final</netty.version>
  16. </properties>
  17. <modules>
  18. <module>sentinel-cluster-client-default</module>
  19. <module>sentinel-cluster-server-default</module>
  20. <module>sentinel-cluster-common-default</module>
  21. <module>sentinel-cluster-server-envoy-rls</module>
  22. </modules>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>io.netty</groupId>
  27. <artifactId>netty-handler</artifactId>
  28. <version>${netty.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.netty</groupId>
  32. <artifactId>netty-all</artifactId>
  33. <version>${netty.version}</version>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. </project>