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.

73 lines
2.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.github.binarywang</groupId>
  8. <artifactId>wx-java</artifactId>
  9. <version>3.4.4.B</version>
  10. <relativePath>../../</relativePath>
  11. </parent>
  12. <artifactId>wx-java-mp-starter</artifactId>
  13. <name>WxJava - Spring Boot Starter for MP</name>
  14. <description>微信公众号开发的Spring Boot Starter</description>
  15. <properties>
  16. <spring.boot.version>2.1.4.RELEASE</spring.boot.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-autoconfigure</artifactId>
  22. <version>${spring.boot.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-configuration-processor</artifactId>
  27. <version>${spring.boot.version}</version>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.binarywang</groupId>
  32. <artifactId>weixin-java-mp</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>redis.clients</groupId>
  37. <artifactId>jedis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <version>${spring.boot.version}</version>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-source-plugin</artifactId>
  55. <version>2.2.1</version>
  56. <executions>
  57. <execution>
  58. <id>attach-sources</id>
  59. <goals>
  60. <goal>jar-no-fork</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>