pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.xyzc</groupId>
  8. <artifactId>xyzc-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>xyzc-common-weixin</artifactId>
  12. <dependencies>
  13. <!-- 微信支付 -->
  14. <!--<dependency>
  15. <groupId>com.github.binarywang</groupId>
  16. <artifactId>weixin-java-pay</artifactId>
  17. <version>${wx-java.version}</version>
  18. </dependency>-->
  19. <!-- 支付宝服务端SDK(通用版) -->
  20. <!--<dependency>
  21. <groupId>com.alipay.sdk</groupId>
  22. <artifactId>alipay-sdk-java</artifactId>
  23. <version>${alipay-sdk.version}</version>
  24. </dependency>-->
  25. <!-- 公众号依赖配置 -->
  26. <dependency>
  27. <groupId>com.github.binarywang</groupId>
  28. <artifactId>weixin-java-mp</artifactId>
  29. <version>${wx-java.version}</version>
  30. </dependency>
  31. <!-- 微信小程序依赖 -->
  32. <dependency>
  33. <groupId>com.github.binarywang</groupId>
  34. <artifactId>weixin-java-miniapp</artifactId>
  35. <version>${wx-java.version}</version>
  36. </dependency>
  37. <!-- 微信开放平台 -->
  38. <dependency>
  39. <groupId>com.xyzc</groupId>
  40. <artifactId>xyzc-common-core</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.xyzc</groupId>
  44. <artifactId>xyzc-common-mybatis</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.xyzc</groupId>
  48. <artifactId>xyzc-common-redis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-annotation</artifactId>
  53. </dependency>
  54. </dependencies>
  55. </project>