You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
<?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>
|
|
<artifactId>common</artifactId>
|
|
<groupId>com.zhengqing</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>auth</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<version>${revision}</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>base</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
|
<version>1.34.0</version>
|
|
</dependency>
|
|
|
|
<!-- Sa-Token 整合 jwt -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-jwt</artifactId>
|
|
<version>1.34.0</version>
|
|
</dependency>
|
|
|
|
<!-- Sa-Token 整合 Redis (使用jackson序列化方式) -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-dao-redis-jackson</artifactId>
|
|
<version>1.27.0</version>
|
|
</dependency>
|
|
|
|
<!-- 提供Redis连接池 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|
|
|