82 lines
2.7 KiB
XML
82 lines
2.7 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>
|
|
<artifactId>ruoyi</artifactId>
|
|
<groupId>com.ruoyi</groupId>
|
|
<version>3.8.8.3.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ruoyi-pay</artifactId>
|
|
|
|
<properties>
|
|
<wechatpay.version>0.2.12</wechatpay.version>
|
|
<alipay.version>2.2.0</alipay.version>
|
|
</properties>
|
|
|
|
<description>
|
|
支付模块
|
|
</description>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- 微信支付的api -->
|
|
<dependency>
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
<artifactId>wechatpay-java</artifactId>
|
|
<version>${wechatpay.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alipay.sdk</groupId>
|
|
<artifactId>alipay-easysdk</artifactId>
|
|
<version>${alipay.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 支付基础模块 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-pay-common</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 收钱吧支付 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-pay-sqb</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 支付宝支付 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-pay-alipay</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 微信支付 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-pay-wx</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 第三方支付启动器 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-pay-starter</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
<modules>
|
|
<module>ruoyi-pay-sqb</module>
|
|
<module>ruoyi-pay-alipay</module>
|
|
<module>ruoyi-pay-wx</module>
|
|
<module>ruoyi-pay-common</module>
|
|
<module>ruoyi-pay-starter</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
</project> |