2019-09-05 09:49:09 +08:00
|
|
|
<?xml version="1.0"?>
|
2020-12-30 09:17:35 +08:00
|
|
|
<project 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" xmlns="http://maven.apache.org/POM/4.0.0">
|
2019-09-05 09:49:09 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
<artifactId>wx-java</artifactId>
|
2023-07-31 22:42:26 +08:00
|
|
|
<version>4.5.4.B</version>
|
2019-09-05 09:49:09 +08:00
|
|
|
</parent>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<artifactId>wx-java-spring-boot-starters</artifactId>
|
2019-09-09 13:38:53 +08:00
|
|
|
<name>WxJava - Spring Boot Starters</name>
|
|
|
|
<description>WxJava 各个模块的 Spring Boot Starter</description>
|
2019-09-05 09:49:09 +08:00
|
|
|
|
|
|
|
<properties>
|
2023-05-31 16:22:39 +08:00
|
|
|
<spring.boot.version>2.5.15</spring.boot.version>
|
2019-09-05 09:49:09 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>wx-java-miniapp-spring-boot-starter</module>
|
|
|
|
<module>wx-java-mp-spring-boot-starter</module>
|
|
|
|
<module>wx-java-pay-spring-boot-starter</module>
|
2019-10-12 11:45:47 +08:00
|
|
|
<module>wx-java-open-spring-boot-starter</module>
|
2020-12-30 09:17:35 +08:00
|
|
|
<module>wx-java-qidian-spring-boot-starter</module>
|
2021-12-06 17:07:43 +08:00
|
|
|
<module>wx-java-cp-spring-boot-starter</module>
|
2023-05-11 20:20:48 +08:00
|
|
|
<module>wx-java-channel-spring-boot-starter</module>
|
2019-09-05 09:49:09 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<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>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|