pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <groupId>com.slodon</groupId>
  7. <artifactId>b2b2c-config-starter</artifactId>
  8. <version>3.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>pay-slodon-starter</artifactId>
  13. <!-- 支付宝集成用jar包 -->
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.alipay.sdk</groupId>
  17. <artifactId>alipay-sdk-java</artifactId>
  18. <version>4.16.2.ALL</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.binarywang</groupId>
  22. <artifactId>weixin-java-pay</artifactId>
  23. <version>4.1.0</version>
  24. </dependency>
  25. <!-- https://mvnrepository.com/artifact/com.paypal.sdk/rest-api-sdk -->
  26. <dependency>
  27. <groupId>com.paypal.sdk</groupId>
  28. <artifactId>rest-api-sdk</artifactId>
  29. <version>1.14.0</version>
  30. </dependency>
  31. <!--中金支付-->
  32. <dependency>
  33. <groupId>cpcn.payment</groupId>
  34. <artifactId>InstitutionTools</artifactId>
  35. <version>v1.0.1.1-RELEASE</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cpcn.institution</groupId>
  39. <artifactId>API</artifactId>
  40. <version>2.5.7.7</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cfca.sadk.util</groupId>
  44. <artifactId>SADK</artifactId>
  45. <version>3.5.2.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>cfca.org.slf4j</groupId>
  49. <artifactId>logback</artifactId>
  50. <version>4.1.1.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cfca.pki</groupId>
  54. <artifactId>PKIBASE</artifactId>
  55. <version>1.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>log4j</groupId>
  59. <artifactId>log4j</artifactId>
  60. <version>1.2.17</version>
  61. </dependency>
  62. </dependencies>
  63. <repositories>
  64. <repository>
  65. <id>thirdparty</id>
  66. <url>http://repository.slodon.cn/nexus/content/repositories/thirdparty</url>
  67. </repository>
  68. </repositories>
  69. </project>