mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-14 05:40:25 +00:00
202 lines
6.6 KiB
XML
202 lines
6.6 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-dax-pay</artifactId>
|
||
<version>1.3.0</version>
|
||
</parent>
|
||
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>dax-pay</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>8</maven.compiler.source>
|
||
<maven.compiler.target>8</maven.compiler.target>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- web mvc -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- undertow -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-undertow</artifactId>
|
||
</dependency>
|
||
|
||
<!-- thymeleaf 模板引擎 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
<!-- thymeleaf配套 -->
|
||
<dependency>
|
||
<groupId>net.sourceforge.nekohtml</groupId>
|
||
<artifactId>nekohtml</artifactId>
|
||
</dependency>
|
||
|
||
<!-- flyway -->
|
||
<dependency>
|
||
<groupId>org.flywaydb</groupId>
|
||
<artifactId>flyway-core</artifactId>
|
||
<version>${flyway.version}</version>
|
||
</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>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!--若使用redisTemplate作为分布式锁底层,则需要引入-->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>lock4j-redis-template-spring-boot-starter</artifactId>
|
||
<version>${lock4j.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 基础API -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>service-baseapi</artifactId>
|
||
<version>${bootx-platform.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 安全认证 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>service-iam</artifactId>
|
||
<version>${bootx-platform.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 消息通知 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>service-notice</artifactId>
|
||
<version>${bootx-platform.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 文件管理 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-starter-file</artifactId>
|
||
</dependency>
|
||
<!-- websocket模块 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-websocket</artifactId>
|
||
</dependency>
|
||
<!-- 定时任务 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-starter-quartz</artifactId>
|
||
</dependency>
|
||
<!-- 消息队列 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-rabbitmq</artifactId>
|
||
</dependency>
|
||
<!-- 自动建表 -->
|
||
<dependency>
|
||
<groupId>cn.bootx</groupId>
|
||
<artifactId>mybatis-table-modify</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 监控 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>common-starter-monitor</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 支付宝支付 -->
|
||
<dependency>
|
||
<groupId>com.github.javen205</groupId>
|
||
<artifactId>IJPay-AliPay</artifactId>
|
||
<version>${IJPay.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>xml-apis</artifactId>
|
||
<groupId>xml-apis</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>fastjson</artifactId>
|
||
<groupId>com.alibaba</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- 微信支付 -->
|
||
<dependency>
|
||
<groupId>com.github.javen205</groupId>
|
||
<artifactId>IJPay-WxPay</artifactId>
|
||
<version>${IJPay.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 非项目直接依赖 业务上未直接使用 -->
|
||
<!-- 2.x版本有问题,直接限定这个版本 -->
|
||
<dependency>
|
||
<groupId>xml-apis</groupId>
|
||
<artifactId>xml-apis</artifactId>
|
||
<version>${xml-apis.version}</version>
|
||
</dependency>
|
||
<!-- plumeLog日志 -->
|
||
<dependency>
|
||
<groupId>com.plumelog</groupId>
|
||
<artifactId>plumelog-logback</artifactId>
|
||
<version>${plumelog.version}</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>dax-pay</finalName>
|
||
<plugins>
|
||
<!-- spring-boot -->
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|