pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.github.binarywang</groupId>
  6. <artifactId>wx-java</artifactId>
  7. <version>4.1.0</version>
  8. </parent>
  9. <packaging>pom</packaging>
  10. <artifactId>wx-java-spring-boot-starters</artifactId>
  11. <name>WxJava - Spring Boot Starters</name>
  12. <description>WxJava 各个模块的 Spring Boot Starter</description>
  13. <properties>
  14. <spring.boot.version>2.3.3.RELEASE</spring.boot.version>
  15. </properties>
  16. <modules>
  17. <module>wx-java-miniapp-spring-boot-starter</module>
  18. <module>wx-java-mp-spring-boot-starter</module>
  19. <module>wx-java-pay-spring-boot-starter</module>
  20. <module>wx-java-open-spring-boot-starter</module>
  21. <module>wx-java-qidian-spring-boot-starter</module>
  22. </modules>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-autoconfigure</artifactId>
  27. <version>${spring.boot.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-configuration-processor</artifactId>
  32. <version>${spring.boot.version}</version>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>