mirror of
https://gitee.com/dromara/sa-token.git
synced 2024-11-30 10:58:05 +08:00
49 lines
1.4 KiB
XML
49 lines
1.4 KiB
XML
<?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-plugin</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>sa-token-redisson-jackson</name>
|
|
<artifactId>sa-token-redisson-jackson</artifactId>
|
|
<description>sa-token integrate redisson (to jackson)</description>
|
|
|
|
<dependencies>
|
|
<!-- sa-token-spring-boot-starter -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-core</artifactId>
|
|
</dependency>
|
|
<!-- Redisson 相关操作API -->
|
|
<dependency>
|
|
<groupId>org.redisson</groupId>
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- jackson-databind -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- jackson-datatype-jsr310 -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|