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>
|
2022-02-10 11:16:17 +08:00
|
|
|
<name>${project.artifactId}</name>
|
2021-10-23 11:00:36 +08:00
|
|
|
<description>支付拓展,接入国内多个支付渠道
|
|
|
|
1. 支付宝,基于官方 SDK 接入
|
|
|
|
2. 微信支付,基于 weixin-java-pay 接入
|
|
|
|
</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-23 17:47:27 +08:00
|
|
|
<!-- Spring 核心 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-20 08:27:44 +08:00
|
|
|
<!-- 工具类相关 -->
|
|
|
|
<dependency>
|
2021-11-03 08:42:38 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2021-10-20 08:27:44 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-10-20 13:20:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-12 10:41:34 +08:00
|
|
|
<dependency>
|
2021-10-23 11:00:36 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-10-23 11:00:36 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependency>
|
2021-10-20 08:27:44 +08:00
|
|
|
|
2021-10-23 11:00:36 +08:00
|
|
|
<!-- 三方云服务相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
2023-04-13 15:44:20 +08:00
|
|
|
<version>4.35.79.ALL</version>
|
2022-08-02 23:01:47 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-10-23 11:00:36 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
<artifactId>weixin-java-pay</artifactId>
|
2023-07-21 17:53:40 +08:00
|
|
|
<version>4.5.0</version>
|
2021-10-23 11:00:36 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- TODO 芋艿:清理 -->
|
2021-10-23 14:00:02 +08:00
|
|
|
|
|
|
|
<!-- Test 测试相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-10-12 10:41:34 +08:00
|
|
|
</dependencies>
|
2021-10-24 11:53:42 +08:00
|
|
|
|
2021-10-18 09:41:38 +08:00
|
|
|
</project>
|