pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.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.5.15</spring.boot.version>
  17. </properties>
  18. <modules>
  19. <module>wx-java-miniapp-multi-spring-boot-starter</module>
  20. <module>wx-java-miniapp-spring-boot-starter</module>
  21. <module>wx-java-mp-multi-spring-boot-starter</module>
  22. <module>wx-java-mp-spring-boot-starter</module>
  23. <module>wx-java-pay-spring-boot-starter</module>
  24. <module>wx-java-open-spring-boot-starter</module>
  25. <module>wx-java-qidian-spring-boot-starter</module>
  26. <module>wx-java-cp-multi-spring-boot-starter</module>
  27. <module>wx-java-cp-spring-boot-starter</module>
  28. <module>wx-java-channel-spring-boot-starter</module>
  29. <module>wx-java-channel-multi-spring-boot-starter</module>
  30. </modules>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-autoconfigure</artifactId>
  35. <version>${spring.boot.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-configuration-processor</artifactId>
  40. <version>${spring.boot.version}</version>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>