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.

48 lines
1.4 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. <parent>
  6. <artifactId>wx-java-spring-boot-starters</artifactId>
  7. <groupId>com.github.binarywang</groupId>
  8. <version>3.8.0.A</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wx-java-pay-spring-boot-starter</artifactId>
  12. <name>WxJava - Spring Boot Starter for WxPay</name>
  13. <description>微信支付开发的 Spring Boot Starter</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.binarywang</groupId>
  17. <artifactId>weixin-java-pay</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-maven-plugin</artifactId>
  26. <version>${spring.boot.version}</version>
  27. </plugin>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-source-plugin</artifactId>
  31. <version>2.2.1</version>
  32. <executions>
  33. <execution>
  34. <id>attach-sources</id>
  35. <goals>
  36. <goal>jar-no-fork</goal>
  37. </goals>
  38. </execution>
  39. </executions>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>