2021-10-12 10:41:34 +08:00
|
|
|
<?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>yudao-framework</artifactId>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-pay</artifactId>
|
|
|
|
<name>${artifactId}</name>
|
2021-10-18 09:41:38 +08:00
|
|
|
<description>支付拓展,基于 IJPay 简单封装,支持微信、支付宝等常见支付渠道</description>
|
2021-10-12 10:41:34 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2021-10-18 09:41:38 +08:00
|
|
|
<artifactId>yudao-common</artifactId>
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-10-20 08:27:44 +08:00
|
|
|
<!-- 工具类相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.validation</groupId>
|
|
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-20 13:20:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-18 09:41:38 +08:00
|
|
|
<!-- 三方云服务相关 -->
|
2021-10-12 10:41:34 +08:00
|
|
|
<dependency>
|
2021-10-18 09:41:38 +08:00
|
|
|
<groupId>com.github.javen205</groupId>
|
|
|
|
<artifactId>IJPay-AliPay</artifactId>
|
|
|
|
<version>2.7.8</version>
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-10-18 09:41:38 +08:00
|
|
|
<groupId>com.github.javen205</groupId>
|
|
|
|
<artifactId>IJPay-WxPay</artifactId>
|
|
|
|
<version>2.7.8</version>
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependency>
|
2021-10-20 08:27:44 +08:00
|
|
|
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependencies>
|
2021-10-18 09:41:38 +08:00
|
|
|
</project>
|