seninel部署
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

70 行
2.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-cluster</artifactId>
  7. <groupId>com.alibaba.csp</groupId>
  8. <version>1.8.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sentinel-cluster-server-default</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.alibaba.csp</groupId>
  16. <artifactId>sentinel-core</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba.csp</groupId>
  20. <artifactId>sentinel-transport-common</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba.csp</groupId>
  25. <artifactId>sentinel-cluster-common-default</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba.csp</groupId>
  29. <artifactId>sentinel-parameter-flow-control</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.netty</groupId>
  33. <artifactId>netty-handler</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba.csp</groupId>
  37. <artifactId>sentinel-datasource-nacos</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.powermock</groupId>
  42. <artifactId>powermock-module-junit4</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.powermock</groupId>
  47. <artifactId>powermock-api-mockito2</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>junit</groupId>
  52. <artifactId>junit</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mockito</groupId>
  57. <artifactId>mockito-core</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.assertj</groupId>
  62. <artifactId>assertj-core</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. </dependencies>
  66. </project>