pom.xml 1.7 KB

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