pom.xml 1.5 KB

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