2021-10-18 22:05:26 +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-plugin</artifactId>
|
2022-03-06 17:36:13 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2021-10-18 22:05:26 +08:00
|
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>sa-token-jwt</name>
|
|
|
|
<artifactId>sa-token-jwt</artifactId>
|
|
|
|
<description>sa-token-jwt</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- sa-token-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
<artifactId>sa-token-core</artifactId>
|
|
|
|
</dependency>
|
2021-10-21 01:09:31 +08:00
|
|
|
<!-- hutool (jwt) -->
|
2021-10-18 22:05:26 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
2022-08-22 16:29:42 +08:00
|
|
|
<artifactId>hutool-jwt</artifactId>
|
2021-10-18 22:05:26 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|