86 lines
2.3 KiB
XML
86 lines
2.3 KiB
XML
<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>org.jeecgframework.boot</groupId>
|
|
<artifactId>zh-module-applet</artifactId>
|
|
<version>3.5.2</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>zh-applet-api</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<properties>
|
|
|
|
<weixin.version>4.5.1.B</weixin.version>
|
|
|
|
</properties>
|
|
|
|
|
|
<description>微信业务模块</description>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-context</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>zh-applet-common</artifactId>
|
|
<version>3.5.2</version>
|
|
</dependency>
|
|
<!--集成springmvc框架并实现自动配置 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!--缓存-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!--weixin-java-miniapp-->
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
<version>${weixin.version}</version>
|
|
</dependency>
|
|
<!--weixin-java-mp-->
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
<version>${weixin.version}</version>
|
|
</dependency>
|
|
<!--weixin-java-open-->
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-open</artifactId>
|
|
<version>${weixin.version}</version>
|
|
</dependency>
|
|
<!--hibernate-validator-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-oas</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- feign -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|