pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>erp</artifactId>
  7. <groupId>com.hys.app</groupId>
  8. <version>7.2.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>module-erp</artifactId>
  12. <repositories>
  13. <!--
  14. <repository>
  15. <id>jitpack.io</id>
  16. <url>https://jitpack.io</url>
  17. </repository>
  18. -->
  19. <repository>
  20. <id>aliyun</id>
  21. <url>https://maven.aliyun.com/repository/public</url>
  22. <releases>
  23. <enabled>true</enabled>
  24. </releases>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.hys.app</groupId>
  33. <artifactId>framework</artifactId>
  34. <version>${erp-version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.jetbrains</groupId>
  38. <artifactId>annotations</artifactId>
  39. <version>RELEASE</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alipay.sdk</groupId>
  44. <artifactId>alipay-sdk-java</artifactId>
  45. <version>4.38.0.ALL</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.github.wechatpay-apiv3</groupId>
  49. <artifactId>wechatpay-java</artifactId>
  50. <version>0.2.12</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.binarywang</groupId>
  54. <artifactId>weixin-java-pay</artifactId>
  55. <version>4.6.2.B</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.wxpay</groupId>
  59. <artifactId>wxpay-sdk</artifactId>
  60. <version> 0.0.3</version>
  61. </dependency>
  62. </dependencies>
  63. </project>