dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.5 KiB

  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.8.0.A</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>