pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>cif</artifactId>
  6. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>cif-service</artifactId>
  11. <packaging>jar</packaging>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. <weixin.version>4.2.0</weixin.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alipay.sdk</groupId>
  20. <artifactId>alipay-sdk-java</artifactId>
  21. <version>4.10.182.ALL</version>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>fastjson</artifactId>
  25. <groupId>com.alibaba</groupId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.javen205</groupId>
  31. <artifactId>IJPay-AliPay</artifactId>
  32. <version>2.7.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.esotericsoftware</groupId>
  40. <artifactId>kryo</artifactId>
  41. <version>4.0.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>de.javakaffee</groupId>
  45. <artifactId>kryo-serializers</artifactId>
  46. <version>0.45</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. <version>3.12.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>redis.clients</groupId>
  55. <artifactId>jedis</artifactId>
  56. <version>3.3.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.mail</groupId>
  60. <artifactId>mail</artifactId>
  61. <version>1.4.7</version>
  62. </dependency>
  63. <!-- <dependency>-->
  64. <!-- <groupId>com.easemob.im</groupId>-->
  65. <!-- <artifactId>im-sdk-core</artifactId>-->
  66. <!-- <version>0.5.2</version>-->
  67. <!-- </dependency>-->
  68. <dependency>
  69. <groupId>io.jsonwebtoken</groupId>
  70. <artifactId>jjwt</artifactId>
  71. <version>0.9.1</version>
  72. </dependency>
  73. <!-- <dependency>-->
  74. <!-- <groupId>com.google.firebase</groupId>-->
  75. <!-- <artifactId>firebase-admin</artifactId>-->
  76. <!-- <version>8.1.0</version>-->
  77. <!-- </dependency>-->
  78. <!--格式化sql日志-->
  79. <dependency>
  80. <groupId>p6spy</groupId>
  81. <artifactId>p6spy</artifactId>
  82. <version>3.8.6</version>
  83. </dependency>
  84. <!--异维科技公共包依赖-->
  85. <dependency>
  86. <groupId>com.txz</groupId>
  87. <artifactId>common</artifactId>
  88. <version>1.0.0-SNAPSHOT</version>
  89. </dependency>
  90. <!-- IJPay-AliPay里引用 和undertow的版本冲突-->
  91. <dependency>
  92. <groupId>javax.servlet</groupId>
  93. <artifactId>javax.servlet-api</artifactId>
  94. <version>4.0.1</version>
  95. <!-- <scope>provided</scope>-->
  96. </dependency>
  97. <dependency>
  98. <groupId>cn.hutool</groupId>
  99. <artifactId>hutool-all</artifactId>
  100. <version>RELEASE</version>
  101. <scope>compile</scope>
  102. </dependency>
  103. <!--异维科技dubbo接口包依赖-->
  104. <dependency>
  105. <groupId>com.txz</groupId>
  106. <artifactId>operating-api</artifactId>
  107. <version>1.0.0-SNAPSHOT</version>
  108. </dependency>
  109. <!-- <dependency>-->
  110. <!-- <groupId>com.txz</groupId>-->
  111. <!-- <artifactId>diagnosis-api</artifactId>-->
  112. <!-- <version>1.0.0-SNAPSHOT</version>-->
  113. <!-- </dependency>-->
  114. <!--异维科技dubbo接口包依赖-->
  115. <dependency>
  116. <groupId>com.txz</groupId>
  117. <artifactId>cif-api</artifactId>
  118. <version>1.0.0-SNAPSHOT</version>
  119. </dependency>
  120. <!--test依赖-->
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-test</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.rocketmq</groupId>
  128. <artifactId>rocketmq-spring-boot-starter</artifactId>
  129. </dependency>
  130. <!-- xxl-job-core -->
  131. <dependency>
  132. <groupId>com.xuxueli</groupId>
  133. <artifactId>xxl-job-core</artifactId>
  134. <version>2.3.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.minio</groupId>
  138. <artifactId>minio</artifactId>
  139. <version>8.2.1</version>
  140. <exclusions>
  141. <exclusion>
  142. <artifactId>okhttp</artifactId>
  143. <groupId>com.squareup.okhttp3</groupId>
  144. </exclusion>
  145. </exclusions>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.squareup.okhttp3</groupId>
  149. <artifactId>okhttp</artifactId>
  150. <version>4.8.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>me.tongfei</groupId>
  154. <artifactId>progressbar</artifactId>
  155. <version>0.5.3</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.jetbrains.kotlin</groupId>
  159. <artifactId>kotlin-stdlib</artifactId>
  160. <version>1.6.20</version>
  161. </dependency>
  162. <!-- <dependency>-->
  163. <!-- <groupId>com.vaadin.external.google</groupId>-->
  164. <!-- <artifactId>android-json</artifactId>-->
  165. <!-- <version>0.0.20131108.vaadin1</version>-->
  166. <!-- <scope>compile</scope>-->
  167. <!-- </dependency>-->
  168. <dependency>
  169. <groupId>com.alipay.sdk</groupId>
  170. <artifactId>alipay-sdk-java</artifactId>
  171. <version>4.10.182.ALL</version>
  172. </dependency>
  173. <!-- 微信相关-->
  174. <dependency>
  175. <groupId>com.github.binarywang</groupId>
  176. <artifactId>wx-java-pay-spring-boot-starter</artifactId>
  177. <version>3.7.0</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.github.binarywang</groupId>
  181. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  182. <version>3.7.0</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-starter-amqp</artifactId>
  187. </dependency>
  188. </dependencies>
  189. <build>
  190. <plugins>
  191. <plugin>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-maven-plugin</artifactId>
  194. <configuration>
  195. <finalName>cif</finalName>
  196. </configuration>
  197. </plugin>
  198. <plugin>
  199. <artifactId>maven-compiler-plugin</artifactId>
  200. <configuration>
  201. <source>${java.version}</source>
  202. <target>${java.version}</target>
  203. <encoding>UTF-8</encoding>
  204. </configuration>
  205. </plugin>
  206. <plugin>
  207. <groupId>org.apache.maven.plugins</groupId>
  208. <artifactId>maven-surefire-plugin</artifactId>
  209. <version>${maven-surefire-plugin.version}</version>
  210. <configuration>
  211. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  212. </configuration>
  213. </plugin>
  214. <plugin>
  215. <groupId>org.apache.maven.plugins</groupId>
  216. <artifactId>maven-resources-plugin</artifactId>
  217. <configuration>
  218. <nonFilteredFileExtensions>
  219. <nonFilteredFileExtension>txt</nonFilteredFileExtension>
  220. <nonFilteredFileExtension>p12</nonFilteredFileExtension>
  221. <nonFilteredFileExtension>mp3</nonFilteredFileExtension>
  222. <nonFilteredFileExtension>jks</nonFilteredFileExtension>
  223. <nonFilteredFileExtension>ico</nonFilteredFileExtension>
  224. <nonFilteredFileExtension>exe</nonFilteredFileExtension>
  225. </nonFilteredFileExtensions>
  226. </configuration>
  227. </plugin>
  228. </plugins>
  229. </build>
  230. </project>