mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-06 20:47:46 +00:00
116 lines
3.8 KiB
XML
116 lines
3.8 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">
|
||
<parent>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>bootx-platform</artifactId>
|
||
<version>1.3.6.2</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>bootx-common-starters</artifactId>
|
||
<packaging>pom</packaging>
|
||
|
||
<modules>
|
||
<module>common-starter-auth</module>
|
||
<module>common-starter-quartz</module>
|
||
<module>common-starter-audit-log</module>
|
||
<module>common-starter-data-perm</module>
|
||
<module>common-starter-file</module>
|
||
<module>common-starter-monitor</module>
|
||
</modules>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-autoconfigure</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- lombok -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- lombok 配合 mapstruct -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok-mapstruct-binding</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- 类型转换处理器 -->
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct-processor</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- 类型转换 -->
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 核心依赖 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>bootx-common-core</artifactId>
|
||
</dependency>
|
||
|
||
<!-- redis 客户端 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-redis-client</artifactId>
|
||
</dependency>
|
||
|
||
<!-- spring 工具包 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-spring</artifactId>
|
||
</dependency>
|
||
|
||
<!-- jackson 工具包 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-jackson</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-spring-boot-starter</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>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
</project>
|