pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.dgtis</groupId>
  7. <artifactId>dgtis-common</artifactId>
  8. <version>2.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dgtis-common-redis</artifactId>
  12. <description>
  13. dgtis-common-redis缓存服务
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Boot Redis -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-data-redis</artifactId>
  20. </dependency>
  21. <!-- dgtis Common Core-->
  22. <dependency>
  23. <groupId>com.dgtis</groupId>
  24. <artifactId>dgtis-common-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.13.2</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.dgtis</groupId>
  34. <artifactId>dgtis-api-system</artifactId>
  35. </dependency>
  36. </dependencies>
  37. </project>