Files
dax-pay/daxpay-single/daxpay-single-service/pom.xml
xxm1995 fe38c35912 Merge branch 'refs/heads/master' into gateway
# Conflicts:
#	README.md
#	daxpay-single/daxpay-single-service/src/main/java/cn/bootx/platform/daxpay/service/core/channel/wechat/service/WeChatPayService.java
2024-04-18 13:40:05 +08:00

143 lines
4.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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.bootx.platform</groupId>
<artifactId>daxpay-single</artifactId>
<version>2.0.5</version>
</parent>
<artifactId>daxpay-single-service</artifactId>
<dependencies>
<!-- 类型转换 -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<scope>provided</scope>
</dependency>
<!-- mp -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
<!-- MP封装 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-mybatis-plus</artifactId>
</dependency>
<!-- 表格操作 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
</dependency>
<!-- 自动建表 -->
<dependency>
<groupId>cn.bootx</groupId>
<artifactId>table-modify-mysql-boot-starter</artifactId>
<version>${table-modify.version}</version>
</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>
<!-- 查询构造器 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-super-query</artifactId>
</dependency>
<!-- 定时任务(quartz) -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-starter-quartz</artifactId>
</dependency>
<!-- 序列生成器 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-sequence</artifactId>
<version>${bootx-platform.version}</version>
</dependency>
<!-- 支付核心包-->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>daxpay-single-core</artifactId>
<version>${daxpay.version}</version>
</dependency>
<!-- 支付宝支付 -->
<dependency>
<groupId>com.github.javen205</groupId>
<artifactId>IJPay-AliPay</artifactId>
<version>${IJPay.version}</version>
<exclusions>
<exclusion>
<artifactId>fastjson</artifactId>
<groupId>com.alibaba</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- 微信支付 ijpay -->
<dependency>
<groupId>com.github.javen205</groupId>
<artifactId>IJPay-WxPay</artifactId>
<version>${IJPay.version}</version>
</dependency>
<!-- 微信支付 wxjava -->
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-pay</artifactId>
<version>${wxjava.version}</version>
</dependency>
<!-- 云闪付 pay-java-parent -->
<dependency>
<groupId>com.egzosn</groupId>
<artifactId>pay-java-union</artifactId>
<version>${egzosn-java.version}</version>
</dependency>
<!-- 微信工具包 -->
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-mp</artifactId>
<version>${wxjava.version}</version>
</dependency>
<!-- 数据权限 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-starter-data-perm</artifactId>
</dependency>
<!-- 测试库 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!-- 分布式锁 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>lock4j-redis-template-spring-boot-starter</artifactId>
<version>${lock4j.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>