2014-08-18 16:48:20 +08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
2016-12-29 19:05:21 +08:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-05-11 17:07:08 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0">
|
2016-12-29 19:05:21 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
<artifactId>weixin-java-parent</artifactId>
|
2017-05-03 17:05:59 +08:00
|
|
|
<version>2.6.1.BETA</version>
|
2016-12-29 19:05:21 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
|
|
<name>WeiXin Java Tools - MP</name>
|
|
|
|
<description>微信公众号Java SDK</description>
|
2014-10-14 17:38:23 +08:00
|
|
|
|
2016-12-29 19:05:21 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
<artifactId>weixin-java-common</artifactId>
|
|
|
|
<version>${project.version}</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>2.9.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-03-27 16:35:39 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
</dependency>
|
2016-12-29 19:05:21 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<suiteXmlFiles>
|
|
|
|
<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
|
|
|
|
</suiteXmlFiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-08-25 14:10:18 +08:00
|
|
|
|
2014-08-18 16:48:20 +08:00
|
|
|
</project>
|