2020-12-11 10:18:48 +00: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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>kernel-d-auth</artifactId>
|
2023-11-01 10:40:13 +00:00
|
|
|
<version>8.0.2</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>auth-spring-boot-starter</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--auth本模块的sdk-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>auth-sdk</artifactId>
|
2021-05-14 14:07:41 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 02:52:05 +00:00
|
|
|
<!--jwt的sdk-->
|
2020-12-25 05:52:36 +00:00
|
|
|
<dependency>
|
2020-12-26 03:12:41 +00:00
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 02:52:05 +00:00
|
|
|
<artifactId>jwt-sdk</artifactId>
|
2021-05-14 14:07:41 +00:00
|
|
|
<version>${roses.version}</version>
|
2022-11-08 15:17:51 +00:00
|
|
|
</dependency>
|
2023-05-09 02:52:05 +00:00
|
|
|
|
|
|
|
<!--参数校验-自动装配-->
|
2021-01-02 11:07:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 02:52:05 +00:00
|
|
|
<artifactId>validator-spring-boot-starter</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--缓存配置-->
|
|
|
|
<!--在项目中进行配置是开启内存还是Redis缓存-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-sdk-memory</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-sdk-redis</artifactId>
|
2021-05-14 14:07:41 +00:00
|
|
|
<version>${roses.version}</version>
|
2023-05-09 02:52:05 +00:00
|
|
|
<optional>true</optional>
|
2021-01-02 11:07:54 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-03-28 08:45:03 +00:00
|
|
|
<!--properties自动提示装载-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|