2021-02-17 18:07:45 +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>com.pj</groupId>
|
|
|
|
|
<artifactId>sa-token-demo-oauth2-client</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot -->
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.3.3.RELEASE</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<!-- 指定一些属性 -->
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
2021-03-12 01:45:13 +08:00
|
|
|
|
<!-- 定义sa-token版本号 -->
|
2022-10-19 08:41:49 +08:00
|
|
|
|
<sa-token-version>1.31.1.temp</sa-token-version>
|
2021-02-17 18:07:45 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2021-07-17 23:48:12 +08:00
|
|
|
|
<!-- SpringBoot依赖 -->
|
2021-02-17 18:07:45 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-07-17 23:48:12 +08:00
|
|
|
|
<!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
|
2021-02-17 18:07:45 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
2021-03-12 01:45:13 +08:00
|
|
|
|
<version>${sa-token-version}</version>
|
2021-02-17 18:07:45 +08:00
|
|
|
|
</dependency>
|
2021-07-17 23:48:12 +08:00
|
|
|
|
|
|
|
|
|
<!-- thymeleaf 视图引擎 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-17 18:07:45 +08:00
|
|
|
|
|
|
|
|
|
<!-- OkHttps网络请求库: http://okhttps.ejlchina.com/ -->
|
|
|
|
|
<dependency>
|
2021-07-17 23:48:12 +08:00
|
|
|
|
<groupId>com.ejlchina</groupId>
|
|
|
|
|
<artifactId>okhttps</artifactId>
|
|
|
|
|
<version>3.1.1</version>
|
2021-02-17 18:07:45 +08:00
|
|
|
|
</dependency>
|
2021-07-17 23:48:12 +08:00
|
|
|
|
|
|
|
|
|
<!-- 热刷新 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
2021-08-18 20:58:06 +08:00
|
|
|
|
<scope>provided</scope>
|
2021-07-17 23:48:12 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-02-17 18:07:45 +08:00
|
|
|
|
<!-- ConfigurationProperties -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|