公众号后台的api接口
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.

53 lines
1.8 KiB

1 year ago
  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>han-hai-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>han-hai-module-pay</artifactId>
  12. <properties>
  13. <weixin.version>3.5.0</weixin.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <!-- alipay -->
  21. <dependency>
  22. <groupId>com.alipay.sdk</groupId>
  23. <artifactId>alipay-sdk-java</artifactId>
  24. <version>4.11.33.ALL</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aliyun</groupId>
  28. <artifactId>aliyun-java-sdk-core</artifactId>
  29. <version>4.5.3</version>
  30. </dependency>
  31. <!-- mp -->
  32. <dependency>
  33. <groupId>com.github.binarywang</groupId>
  34. <artifactId>weixin-java-pay</artifactId>
  35. <version>${weixin.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.github.binarywang</groupId>
  39. <artifactId>weixin-java-miniapp</artifactId>
  40. <version>${weixin.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.binarywang</groupId>
  44. <artifactId>weixin-java-mp</artifactId>
  45. <version>${weixin.version}</version>
  46. </dependency>
  47. </dependencies>
  48. </project>