blog-weixin/pom.xml

144 lines
4.6 KiB
XML
Raw Normal View History

2020-03-15 13:34:35 +00:00
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zeekling</groupId>
2020-10-08 13:06:48 +00:00
<artifactId>blog-weixin</artifactId>
2020-03-15 13:34:35 +00:00
<version>1.0-SNAPSHOT</version>
2020-03-15 13:47:41 +00:00
<packaging>jar</packaging>
2020-03-15 13:34:35 +00:00
2020-03-15 13:47:41 +00:00
<properties>
2020-03-16 17:13:34 +00:00
<finalName.text>solo-weixin</finalName.text>
2020-03-15 14:43:30 +00:00
<spring-boot.version>1.5.9.RELEASE</spring-boot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2020-03-19 13:45:56 +00:00
<weixin-java-mp.version>3.7.0</weixin-java-mp.version>
2020-03-15 13:47:41 +00:00
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2020-03-15 14:43:30 +00:00
<version>1.5.9.RELEASE</version>
2020-03-15 13:47:41 +00:00
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
2020-03-16 17:13:34 +00:00
<version>${spring-boot.version}</version>
2020-03-15 13:47:41 +00:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
2020-03-16 15:36:25 +00:00
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
2020-03-15 13:47:41 +00:00
</dependency>
2020-03-15 14:43:30 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
2020-03-19 13:45:56 +00:00
<artifactId>spring-boot-starter-thymeleaf</artifactId>
2020-03-16 15:36:25 +00:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2020-03-19 13:45:56 +00:00
<artifactId>spring-boot-starter</artifactId>
2020-03-16 15:36:25 +00:00
<version>${spring-boot.version}</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
2020-03-15 14:43:30 +00:00
</dependency>
2020-03-16 17:13:34 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
2020-03-19 13:45:56 +00:00
<artifactId>spring-boot-starter-logging</artifactId>
2020-03-16 17:13:34 +00:00
<version>${spring-boot.version}</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
2020-03-17 16:46:51 +00:00
<dependency>
2020-03-19 13:45:56 +00:00
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.9</version>
2020-03-17 16:46:51 +00:00
</dependency>
2020-03-19 13:45:56 +00:00
2020-03-17 16:46:51 +00:00
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-mp</artifactId>
2020-03-19 13:45:56 +00:00
<version>${weixin-java-mp.version}</version>
2020-03-17 16:46:51 +00:00
</dependency>
<dependency>
2020-03-19 13:45:56 +00:00
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
2020-03-17 16:46:51 +00:00
</dependency>
<dependency>
2020-03-19 13:45:56 +00:00
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
2020-03-17 16:46:51 +00:00
</dependency>
2020-03-19 13:45:56 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<version>${spring-boot.version}</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
2020-03-17 16:46:51 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
2020-03-16 17:13:34 +00:00
2020-03-15 13:47:41 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
</plugin>
</plugins>
</build>
2020-03-15 13:34:35 +00:00
</project>