mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-13 13:20:23 +00:00
33 lines
1.1 KiB
XML
33 lines
1.1 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>org.dromara.daxpay</groupId>
|
|
<artifactId>daxpay-open-channel</artifactId>
|
|
<version>3.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>daxpay-open-channel-wechat</artifactId>
|
|
<description>微信支付通道实现</description>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- 微信支付三方SDK 同时支持 v2/v3版本接入-->
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
<version>${wxjava.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 表格工具 -->
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-base</artifactId>
|
|
<version>${easypoi.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|