pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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>tzy</artifactId>
  7. <groupId>com.tzy</groupId>
  8. <version>4.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tzy-sportcard</artifactId>
  12. <name>拼团模块</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-test</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <!--微信支付 -->
  20. <dependency>
  21. <groupId>com.github.wxpay</groupId>
  22. <artifactId>wxpay-sdk</artifactId>
  23. <version>0.0.3</version>
  24. </dependency>
  25. <!--支付宝支付-->
  26. <dependency>
  27. <groupId>com.alipay.sdk</groupId>
  28. <artifactId>alipay-sdk-java</artifactId>
  29. <version>4.16.50.ALL</version>
  30. </dependency>
  31. <!--河马付-->
  32. <dependency>
  33. <groupId>cn.com.sand</groupId>
  34. <artifactId>hmpay-sdk</artifactId>
  35. <version>1.1.4</version>
  36. <scope>system</scope>
  37. <systemPath>${project.basedir}/src/main/resources/lib/hmpay-sdk-1.1.4.jar</systemPath>
  38. </dependency>
  39. <!-- 通用工具-->
  40. <dependency>
  41. <groupId>com.tzy</groupId>
  42. <artifactId>tzy-common</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.tzy</groupId>
  46. <artifactId>tzy-framework</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.tzy</groupId>
  50. <artifactId>poyee-merchant</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.tzy</groupId>
  54. <artifactId>weixin-api</artifactId>
  55. </dependency>
  56. <!---->
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-test</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.httpcomponents</groupId>
  71. <artifactId>httpclient</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.httpcomponents</groupId>
  75. <artifactId>httpcore</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>net.sf.json-lib</groupId>
  79. <artifactId>json-lib</artifactId>
  80. <version>2.4</version>
  81. <classifier>jdk15</classifier>
  82. </dependency>
  83. <dependency>
  84. <groupId> org.springframework.boot </groupId>
  85. <artifactId> spring-boot-configuration-processor </artifactId>
  86. <optional> true </optional>
  87. </dependency>
  88. <!-- SpringBoot 拦截器 -->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-aop</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.freemarker</groupId>
  95. <artifactId>freemarker</artifactId>
  96. <version>2.3.23</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.bouncycastle</groupId>
  100. <artifactId>bcprov-jdk15on</artifactId>
  101. <version>1.59</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>jdom</groupId>
  105. <artifactId>jdom</artifactId>
  106. <version>1.0</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.android</groupId>
  110. <artifactId>AXMLPrinter</artifactId>
  111. <version>1.0.0</version>
  112. <scope>system</scope>
  113. <systemPath>${project.basedir}/src/main/resources/lib/AXMLPrinter2_zixie.jar</systemPath>
  114. </dependency>
  115. <dependency>
  116. <groupId>io.swagger</groupId>
  117. <artifactId>swagger-annotations</artifactId>
  118. <version>1.5.21</version>
  119. <scope>compile</scope>
  120. </dependency>
  121. </dependencies>
  122. </project>