pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xyzc</groupId>
  8. <artifactId>xyzc-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>xyzc-common-redis</artifactId>
  12. <description>
  13. xyzc-common-redis 缓存服务
  14. </description>
  15. <dependencies>
  16. <!-- RuoYi Common Core-->
  17. <dependency>
  18. <groupId>com.xyzc</groupId>
  19. <artifactId>xyzc-common-core</artifactId>
  20. </dependency>
  21. <!-- redisson -->
  22. <dependency>
  23. <groupId>org.redisson</groupId>
  24. <artifactId>redisson-spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.ben-manes.caffeine</groupId>
  32. <artifactId>caffeine</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.fasterxml.jackson.datatype</groupId>
  36. <artifactId>jackson-datatype-jsr310</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>