mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-14 05:40:25 +00:00
70 lines
2.4 KiB
XML
70 lines
2.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/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>bootx-platform-starter</artifactId>
|
||
<version>3.0.0.beta5</version>
|
||
</parent>
|
||
|
||
<artifactId>starter-auth</artifactId>
|
||
|
||
<dependencies>
|
||
<!-- web -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<!-- redis -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Sa-Token 权限认证, 在线文档:https://sa-token.cc -->
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
||
<version>${sa-token.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-redis-jackson</artifactId>
|
||
<version>${sa-token.version}</version>
|
||
</dependency>
|
||
|
||
<!-- justauth第三方登录 -->
|
||
<dependency>
|
||
<groupId>me.zhyd.oauth</groupId>
|
||
<artifactId>JustAuth</artifactId>
|
||
<version>${justauth.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>hutool-core</artifactId>
|
||
<groupId>cn.hutool</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>fastjson</artifactId>
|
||
<groupId>com.alibaba</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!--spring 配置 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-spring</artifactId>
|
||
<version>${bootx-platform.version}</version>
|
||
</dependency>
|
||
<!-- Jackson配置 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-jackson</artifactId>
|
||
<version>${bootx-platform.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|