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.

56 lines
1.9KB

  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-extension</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-datasource-redis</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <java.source.version>1.8</java.source.version>
  15. <java.target.version>1.8</java.target.version>
  16. <lettuce.version>5.0.1.RELEASE</lettuce.version>
  17. <redis.mock.version>0.1.6</redis.mock.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.alibaba.csp</groupId>
  22. <artifactId>sentinel-datasource-extension</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.lettuce</groupId>
  26. <artifactId>lettuce-core</artifactId>
  27. <version>${lettuce.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.awaitility</groupId>
  36. <artifactId>awaitility</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>ai.grakn</groupId>
  46. <artifactId>redis-mock</artifactId>
  47. <version>${redis.mock.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. </dependencies>
  51. </project>