mirror of
https://gitee.com/dromara/sa-token.git
synced 2024-12-02 20:08:08 +08:00
7f416d9e29
Bumps [spring-boot-starter-web](https://github.com/spring-projects/spring-boot) from 2.0.0.RELEASE to 2.5.12. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.0.0.RELEASE...v2.5.12) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
1.4 KiB
XML
48 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-starter</artifactId>
|
|
<version>1.29.1.trial</version>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>sa-token-spring-boot-starter</name>
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
|
<description>springboot integrate sa-token</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-servlet</artifactId>
|
|
<version>${sa-token-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>2.5.12</version>
|
|
</dependency>
|
|
<!-- OAuth2.0 (optional) -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-oauth2</artifactId>
|
|
<version>${sa-token-version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- config -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<version>2.0.0.RELEASE</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|