pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  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.yushu</groupId>
  7. <artifactId>iot-framework</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>iot-spring-boot-starter-redis</artifactId>
  13. <packaging>jar</packaging>
  14. <name>${project.artifactId}</name>
  15. <description>Redis 封装拓展</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.yushu</groupId>
  19. <artifactId>iot-common</artifactId>
  20. </dependency>
  21. <!-- DB 相关 -->
  22. <dependency>
  23. <groupId>org.redisson</groupId>
  24. <artifactId>redisson-spring-boot-starter</artifactId>
  25. </dependency>
  26. </dependencies>
  27. </project>