| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>sckw-common-redis</artifactId>
- <version>1.0.0</version>
- <description>缓存服务</description>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <redisson.version>3.20.1</redisson.version>
- </properties>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>org.redisson</groupId>-->
- <!-- <artifactId>redisson-spring-boot-starter</artifactId>-->
- <!-- <version>${redisson.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.sckw</groupId>-->
- <!-- <artifactId>sckw-common-core</artifactId>-->
- <!-- <version>1.0.0</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- </dependency>
- <dependency>
- <groupId>org.redisson</groupId>
- <artifactId>redisson-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-json</artifactId>
- </dependency>
- </dependencies>
- </project>
|