pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.sckw</groupId>
  8. <artifactId>sckw-common</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-common-redis</artifactId>
  12. <version>1.0.0</version>
  13. <description>缓存服务</description>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <redisson.version>3.20.1</redisson.version>
  20. </properties>
  21. <dependencies>
  22. <!-- <dependency>-->
  23. <!-- <groupId>org.redisson</groupId>-->
  24. <!-- <artifactId>redisson-spring-boot-starter</artifactId>-->
  25. <!-- <version>${redisson.version}</version>-->
  26. <!-- </dependency>-->
  27. <!-- <dependency>-->
  28. <!-- <groupId>com.sckw</groupId>-->
  29. <!-- <artifactId>sckw-common-core</artifactId>-->
  30. <!-- <version>1.0.0</version>-->
  31. <!-- </dependency>-->
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>fastjson</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.redisson</groupId>
  38. <artifactId>redisson-spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-json</artifactId>
  43. </dependency>
  44. </dependencies>
  45. </project>