pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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.dubbo.extensions</groupId>
  50. <artifactId>dubbo-serialization-kryo</artifactId>
  51. <version>1.0.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-lang3</artifactId>
  56. <version>3.12.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>redis.clients</groupId>
  60. <artifactId>jedis</artifactId>
  61. <version>3.3.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>javax.mail</groupId>
  65. <artifactId>mail</artifactId>
  66. <version>1.4.7</version>
  67. </dependency>
  68. <!-- <dependency>-->
  69. <!-- <groupId>com.easemob.im</groupId>-->
  70. <!-- <artifactId>im-sdk-core</artifactId>-->
  71. <!-- <version>0.5.2</version>-->
  72. <!-- </dependency>-->
  73. <dependency>
  74. <groupId>io.jsonwebtoken</groupId>
  75. <artifactId>jjwt</artifactId>
  76. <version>0.9.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. <version>5.2.4</version>
  82. </dependency>
  83. <!-- <dependency>-->
  84. <!-- <groupId>com.google.firebase</groupId>-->
  85. <!-- <artifactId>firebase-admin</artifactId>-->
  86. <!-- <version>8.1.0</version>-->
  87. <!-- </dependency>-->
  88. <!--格式化sql日志-->
  89. <dependency>
  90. <groupId>p6spy</groupId>
  91. <artifactId>p6spy</artifactId>
  92. <version>3.8.6</version>
  93. </dependency>
  94. <!--天仙子科技公共包依赖-->
  95. <dependency>
  96. <groupId>com.txz</groupId>
  97. <artifactId>common</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.txz</groupId>
  101. <artifactId>operating-api</artifactId>
  102. <version>1.0.0-SNAPSHOT</version>
  103. </dependency>
  104. <!-- IJPay-AliPay里引用 和undertow的版本冲突-->
  105. <dependency>
  106. <groupId>javax.servlet</groupId>
  107. <artifactId>javax.servlet-api</artifactId>
  108. <version>4.0.1</version>
  109. <!-- <scope>provided</scope>-->
  110. </dependency>
  111. <dependency>
  112. <groupId>com.txz</groupId>
  113. <artifactId>mall-api</artifactId>
  114. <version>1.0.0-SNAPSHOT</version>
  115. </dependency>
  116. <!--异维科技dubbo接口包依赖-->
  117. <dependency>
  118. <groupId>com.txz</groupId>
  119. <artifactId>operating-api</artifactId>
  120. <version>1.0.0-SNAPSHOT</version>
  121. </dependency>
  122. <!-- <dependency>-->
  123. <!-- <groupId>com.txz</groupId>-->
  124. <!-- <artifactId>diagnosis-api</artifactId>-->
  125. <!-- <version>1.0.0-SNAPSHOT</version>-->
  126. <!-- </dependency>-->
  127. <!--异维科技dubbo接口包依赖-->
  128. <dependency>
  129. <groupId>com.txz</groupId>
  130. <artifactId>cif-api</artifactId>
  131. <version>1.0.0-SNAPSHOT</version>
  132. </dependency>
  133. <!--test依赖-->
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-starter-test</artifactId>
  137. <scope>test</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.rocketmq</groupId>
  141. <artifactId>rocketmq-spring-boot-starter</artifactId>
  142. <version>2.2.2</version>
  143. </dependency>
  144. <!-- xxl-job-core -->
  145. <dependency>
  146. <groupId>com.xuxueli</groupId>
  147. <artifactId>xxl-job-core</artifactId>
  148. <version>2.3.1</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>io.minio</groupId>
  152. <artifactId>minio</artifactId>
  153. <version>8.2.1</version>
  154. <exclusions>
  155. <exclusion>
  156. <artifactId>okhttp</artifactId>
  157. <groupId>com.squareup.okhttp3</groupId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.squareup.okhttp3</groupId>
  163. <artifactId>okhttp</artifactId>
  164. <version>4.8.1</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>me.tongfei</groupId>
  168. <artifactId>progressbar</artifactId>
  169. <version>0.5.3</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.jetbrains.kotlin</groupId>
  173. <artifactId>kotlin-stdlib</artifactId>
  174. <version>1.6.20</version>
  175. </dependency>
  176. <!-- <dependency>-->
  177. <!-- <groupId>com.vaadin.external.google</groupId>-->
  178. <!-- <artifactId>android-json</artifactId>-->
  179. <!-- <version>0.0.20131108.vaadin1</version>-->
  180. <!-- <scope>compile</scope>-->
  181. <!-- </dependency>-->
  182. <dependency>
  183. <groupId>com.alipay.sdk</groupId>
  184. <artifactId>alipay-sdk-java</artifactId>
  185. <version>4.10.182.ALL</version>
  186. </dependency>
  187. <!-- 微信相关-->
  188. <dependency>
  189. <groupId>com.github.binarywang</groupId>
  190. <artifactId>wx-java-pay-spring-boot-starter</artifactId>
  191. <version>3.7.0</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.github.binarywang</groupId>
  195. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  196. <version>3.7.0</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-starter-amqp</artifactId>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.springframework.cloud</groupId>
  204. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.springframework.cloud</groupId>
  208. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  209. </dependency>
  210. <!-- <dependency> -->
  211. <!-- <groupId>org.apache.dubbo</groupId> -->
  212. <!-- <artifactId>dubbo-serialization-kryo</artifactId> -->
  213. <!-- <version>2.7.9</version> -->
  214. <!-- </dependency> -->
  215. <dependency>
  216. <groupId>org.springdoc</groupId>
  217. <artifactId>springdoc-openapi-ui</artifactId>
  218. <version>1.6.14</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.alibaba.cloud</groupId>
  222. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  223. <version>2.2.9.RELEASE</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.alibaba.cloud</groupId>
  227. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  228. <version>2.2.9.RELEASE</version>
  229. </dependency>
  230. <!-- <dependency> -->
  231. <!-- <groupId>com.alibaba.cloud</groupId> -->
  232. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> -->
  233. <!-- <version>2.2.9.RELEASE</version> -->
  234. <!-- </dependency> -->
  235. <!-- <dependency> -->
  236. <!-- <groupId>com.alibaba.cloud</groupId> -->
  237. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> -->
  238. <!-- <version>2.2.9.RELEASE</version> -->
  239. <!-- </dependency> -->
  240. <!-- <dependency> -->
  241. <!-- <groupId>org.apache.dubbo</groupId> -->
  242. <!-- <artifactId>dubbo-spring-boot-starter</artifactId> -->
  243. <!-- <version>3.0.10</version> -->
  244. <!-- </dependency> -->
  245. <!-- <dependency> -->
  246. <!-- <groupId>com.alibaba.nacos</groupId> -->
  247. <!-- <artifactId>nacos-client</artifactId> -->
  248. <!-- <version>2.2.2</version> -->
  249. <!-- </dependency> -->
  250. <!-- <dependency> -->
  251. <!-- <groupId>org.springframework.boot</groupId> -->
  252. <!-- <artifactId>spring-boot-starter-web</artifactId> -->
  253. <!-- &lt;!&ndash; 移除tomcat容器&ndash;&gt; -->
  254. <!-- <exclusions> -->
  255. <!-- <exclusion> -->
  256. <!-- <groupId>org.springframework.boot</groupId> -->
  257. <!-- <artifactId>spring-boot-starter-tomcat</artifactId> -->
  258. <!-- </exclusion> -->
  259. <!-- </exclusions> -->
  260. <!-- </dependency> -->
  261. <!-- &lt;!&ndash; 替换undertow容器 &ndash;&gt; -->
  262. <!-- <dependency> -->
  263. <!-- <groupId>org.springframework.boot</groupId> -->
  264. <!-- <artifactId>spring-boot-starter-undertow</artifactId> -->
  265. <!-- </dependency> -->
  266. <dependency>
  267. <groupId>junit</groupId>
  268. <artifactId>junit</artifactId>
  269. <version>4.13.2</version>
  270. <scope>test</scope>
  271. </dependency>
  272. </dependencies>
  273. <build>
  274. <plugins>
  275. <plugin>
  276. <groupId>org.springframework.boot</groupId>
  277. <artifactId>spring-boot-maven-plugin</artifactId>
  278. <configuration>
  279. <finalName>cif</finalName>
  280. </configuration>
  281. </plugin>
  282. <plugin>
  283. <artifactId>maven-compiler-plugin</artifactId>
  284. <configuration>
  285. <source>${java.version}</source>
  286. <target>${java.version}</target>
  287. <encoding>UTF-8</encoding>
  288. </configuration>
  289. </plugin>
  290. <plugin>
  291. <groupId>org.apache.maven.plugins</groupId>
  292. <artifactId>maven-surefire-plugin</artifactId>
  293. <version>${maven-surefire-plugin.version}</version>
  294. <configuration>
  295. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  296. </configuration>
  297. </plugin>
  298. <plugin>
  299. <groupId>org.apache.maven.plugins</groupId>
  300. <artifactId>maven-resources-plugin</artifactId>
  301. <configuration>
  302. <nonFilteredFileExtensions>
  303. <nonFilteredFileExtension>txt</nonFilteredFileExtension>
  304. <nonFilteredFileExtension>p12</nonFilteredFileExtension>
  305. <nonFilteredFileExtension>mp3</nonFilteredFileExtension>
  306. <nonFilteredFileExtension>jks</nonFilteredFileExtension>
  307. <nonFilteredFileExtension>ico</nonFilteredFileExtension>
  308. <nonFilteredFileExtension>exe</nonFilteredFileExtension>
  309. </nonFilteredFileExtensions>
  310. </configuration>
  311. </plugin>
  312. </plugins>
  313. </build>
  314. </project>