pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.5.2.B</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.5.15</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. <module>wx-java-cp-spring-boot-starter</module>
  23. <module>wx-java-channel-spring-boot-starter</module>
  24. </modules>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-autoconfigure</artifactId>
  29. <version>${spring.boot.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-configuration-processor</artifactId>
  34. <version>${spring.boot.version}</version>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>