71 lines
2.3 KiB
XML
71 lines
2.3 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>com.fastbee</groupId>
|
|
<artifactId>fastbee</artifactId>
|
|
<version>3.8.5</version>
|
|
</parent>
|
|
|
|
<groupId>com.fastbee.pay</groupId>
|
|
<artifactId>fastbee-pay</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>fastbee-pay-api</module>
|
|
<module>fastbee-pay-core</module>
|
|
<module>fastbee-pay-framework</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fastbee</groupId>
|
|
<artifactId>fastbee-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 微信支付 -->
|
|
<!--<dependency>
|
|
<groupId>com.github.wxpay</groupId>
|
|
<artifactId>wxpay-sdk</artifactId>
|
|
<version>0.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
<version>4.4.2.B</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
<version>4.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
<version>4.4.0</version>
|
|
</dependency>-->
|
|
|
|
<!--微信支付-->
|
|
<dependency>
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
<artifactId>wechatpay-java</artifactId>
|
|
<version>0.2.15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
<artifactId>wechatpay-apache-httpclient</artifactId>
|
|
<version>0.5.0</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
</project>
|