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"
|
|
|
|
|
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>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-demo-springboot</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot -->
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2022-05-01 12:18:36 +08:00
|
|
|
|
<version>2.5.12</version>
|
2021-07-19 22:18:40 +08:00
|
|
|
|
<!-- <version>1.5.9.RELEASE</version> -->
|
2021-02-04 23:03:02 +08:00
|
|
|
|
<relativePath/>
|
2020-02-05 00:31:51 +08:00
|
|
|
|
</parent>
|
2021-02-04 23:03:02 +08:00
|
|
|
|
|
|
|
|
|
<!-- 定义sa-token版本号 -->
|
|
|
|
|
<properties>
|
2022-10-19 08:41:49 +08:00
|
|
|
|
<sa-token-version>1.31.1.temp</sa-token-version>
|
2021-02-04 23:03:02 +08:00
|
|
|
|
</properties>
|
2020-02-05 00:31:51 +08:00
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2021-07-19 01:12:55 +08:00
|
|
|
|
<!-- SpringBoot依赖 -->
|
2020-02-05 00:31:51 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-10-21 11:27:29 +08:00
|
|
|
|
<!-- Sa-Token 权限认证, 在线文档:https://sa-token.cc/ -->
|
2020-12-18 00:39:14 +08:00
|
|
|
|
<dependency>
|
2020-02-08 00:54:38 +08:00
|
|
|
|
<groupId>cn.dev33</groupId>
|
2020-12-22 01:11:28 +08:00
|
|
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
2021-02-04 23:03:02 +08:00
|
|
|
|
<version>${sa-token-version}</version>
|
2020-12-18 00:39:14 +08:00
|
|
|
|
</dependency>
|
2021-06-11 01:05:33 +08:00
|
|
|
|
|
2021-07-19 01:12:55 +08:00
|
|
|
|
<!-- Sa-Token整合SpringAOP实现注解鉴权 -->
|
2021-07-27 05:08:50 +08:00
|
|
|
|
<!-- <dependency>
|
2021-01-09 17:24:44 +08:00
|
|
|
|
<groupId>cn.dev33</groupId>
|
2021-01-09 17:32:40 +08:00
|
|
|
|
<artifactId>sa-token-spring-aop</artifactId>
|
2021-02-04 23:03:02 +08:00
|
|
|
|
<version>${sa-token-version}</version>
|
2021-07-27 05:08:50 +08:00
|
|
|
|
</dependency> -->
|
2020-02-05 00:31:51 +08:00
|
|
|
|
|
2020-12-17 02:19:56 +08:00
|
|
|
|
<!-- @ConfigurationProperties -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2020-12-18 00:39:14 +08:00
|
|
|
|
|
2020-02-05 00:31:51 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|