|
|
@@ -2,68 +2,69 @@ |
|
|
|
<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.github.binarywang</groupId> |
|
|
|
<artifactId>wx-java</artifactId> |
|
|
|
<version>3.3.8.B</version> |
|
|
|
</parent> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
|
|
<groupId>com.github.binarywang</groupId> |
|
|
|
<artifactId>wx-java</artifactId> |
|
|
|
<version>3.3.9.B</version> |
|
|
|
<relativePath>../../</relativePath> |
|
|
|
</parent> |
|
|
|
|
|
|
|
<artifactId>wx-java-mp-starter</artifactId> |
|
|
|
<artifactId>wx-java-mp-starter</artifactId> |
|
|
|
|
|
|
|
<properties> |
|
|
|
<spring.boot.version>2.1.4.RELEASE</spring.boot.version> |
|
|
|
</properties> |
|
|
|
<properties> |
|
|
|
<spring.boot.version>2.1.4.RELEASE</spring.boot.version> |
|
|
|
</properties> |
|
|
|
|
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId> |
|
|
|
<version>${spring.boot.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
|
|
<version>${spring.boot.version}</version> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>com.github.binarywang</groupId> |
|
|
|
<artifactId>weixin-java-mp</artifactId> |
|
|
|
<version>${project.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>redis.clients</groupId> |
|
|
|
<artifactId>jedis</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.projectlombok</groupId> |
|
|
|
<artifactId>lombok</artifactId> |
|
|
|
<scope>provided</scope> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId> |
|
|
|
<version>${spring.boot.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
|
|
<version>${spring.boot.version}</version> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>com.github.binarywang</groupId> |
|
|
|
<artifactId>weixin-java-mp</artifactId> |
|
|
|
<version>${project.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>redis.clients</groupId> |
|
|
|
<artifactId>jedis</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.projectlombok</groupId> |
|
|
|
<artifactId>lombok</artifactId> |
|
|
|
<scope>provided</scope> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
<version>${spring.boot.version}</version> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
<version>2.2.1</version> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<id>attach-sources</id> |
|
|
|
<goals> |
|
|
|
<goal>jar-no-fork</goal> |
|
|
|
</goals> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
<version>${spring.boot.version}</version> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
<version>2.2.1</version> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<id>attach-sources</id> |
|
|
|
<goals> |
|
|
|
<goal>jar-no-fork</goal> |
|
|
|
</goals> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
|
</project> |