2020-12-22 01:11:28 +08:00
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
2020-02-05 00:31:51 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-12-22 01:11:28 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2020-02-05 00:31:51 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-03-07 14:40:15 +08:00
|
|
|
|
2020-02-05 00:31:51 +08:00
|
|
|
<parent>
|
2020-12-22 01:11:28 +08:00
|
|
|
<groupId>cn.dev33</groupId>
|
2021-05-05 01:02:20 +08:00
|
|
|
<artifactId>sa-token-starter</artifactId>
|
2022-03-06 17:36:13 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2020-12-22 01:11:28 +08:00
|
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
2020-02-05 00:31:51 +08:00
|
|
|
|
2020-12-22 01:11:28 +08:00
|
|
|
<name>sa-token-spring-boot-starter</name>
|
|
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
|
|
|
<description>springboot integrate sa-token</description>
|
2020-02-05 00:31:51 +08:00
|
|
|
|
2020-12-22 01:11:28 +08:00
|
|
|
<dependencies>
|
2020-02-05 00:31:51 +08:00
|
|
|
<dependency>
|
2020-12-22 01:11:28 +08:00
|
|
|
<groupId>cn.dev33</groupId>
|
2021-04-05 22:54:25 +08:00
|
|
|
<artifactId>sa-token-servlet</artifactId>
|
2022-03-06 17:36:13 +08:00
|
|
|
<version>${revision}</version>
|
2020-02-05 00:31:51 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2020-12-22 01:11:28 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>2.0.0.RELEASE</version>
|
2020-02-05 00:31:51 +08:00
|
|
|
</dependency>
|
2021-07-17 23:48:12 +08:00
|
|
|
<!-- OAuth2.0 (optional) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
<artifactId>sa-token-oauth2</artifactId>
|
2022-03-06 17:36:13 +08:00
|
|
|
<version>${revision}</version>
|
2021-07-17 23:48:12 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2021-06-08 00:16:42 +08:00
|
|
|
<!-- config -->
|
2020-09-07 02:21:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
2020-12-22 01:11:28 +08:00
|
|
|
<version>2.0.0.RELEASE</version>
|
2020-09-07 02:21:35 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-02-05 00:31:51 +08:00
|
|
|
</dependencies>
|
2020-12-22 01:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|