2020-12-26 23:55:46 +08:00
|
|
|
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
<artifactId>sa-token-parent</artifactId>
|
2021-04-24 00:53:39 +08:00
|
|
|
<version>1.18.0</version>
|
2020-12-26 23:55:46 +08:00
|
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-12-27 00:12:48 +08:00
|
|
|
<name>sa-token-dao-redis</name>
|
|
|
|
<artifactId>sa-token-dao-redis</artifactId>
|
2020-12-26 23:55:46 +08:00
|
|
|
<description>sa-token integrate redis</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- sa-token-spring-boot-starter -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.dev33</groupId>
|
2021-04-13 22:43:06 +08:00
|
|
|
<artifactId>sa-token-core</artifactId>
|
2021-02-04 23:03:02 +08:00
|
|
|
<version>${sa-token-version}</version>
|
2021-01-02 04:00:49 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- RedisTemplate 相关操作API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
2021-01-04 18:12:46 +08:00
|
|
|
<version>2.3.3.RELEASE</version>
|
2020-12-26 23:55:46 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|