96 lines
2.7 KiB
XML
96 lines
2.7 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">
|
|
<parent>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-modules</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>intc-weixin</artifactId>
|
|
|
|
<description>
|
|
微信对接模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 微信开发 Java SDK -->
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
<version>4.6.5.B</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
<version>4.6.5.B</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
<version>4.6.5.B</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-open</artifactId>
|
|
<version>4.6.5.B</version>
|
|
</dependency>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-doc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-mybatis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-log</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-security</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-common-tenant</artifactId>
|
|
</dependency>
|
|
|
|
<!-- fishery 模块依赖 -->
|
|
<dependency>
|
|
<groupId>com.intc</groupId>
|
|
<artifactId>intc-fishery</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|