mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-24 18:04:38 +08:00
48 lines
1.4 KiB
XML
48 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<artifactId>weixin-java-parent</artifactId>
|
||
<groupId>com.github.binarywang</groupId>
|
||
<version>2.5.3.BETA</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>weixin-java-pay</artifactId>
|
||
<name>WeiXin Java Tools - PAY</name>
|
||
<description>微信支付 Java SDK</description>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.github.binarywang</groupId>
|
||
<artifactId>weixin-java-common</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.jodd</groupId>
|
||
<artifactId>jodd-http</artifactId>
|
||
<version>3.7</version>
|
||
<!-- 由于较新的3.8版本需要jdk8,故而此处采用较低版本 -->
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.binarywang</groupId>
|
||
<artifactId>qrcode-utils</artifactId>
|
||
<version>1.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.testng</groupId>
|
||
<artifactId>testng</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.inject</groupId>
|
||
<artifactId>guice</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|