pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.szwl</groupId>
  7. <artifactId>payServer</artifactId>
  8. <version>0.0.1</version>
  9. <packaging>jar</packaging>
  10. <name>payServer</name>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.3.12.RELEASE</version>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <spring-cloud.version>Hoxton.SR12</spring-cloud.version>
  21. <!-- <mybatis-spring-boot-starter.version>2.2.0</mybatis-spring-boot-starter.version>-->
  22. <mybatis-plus.version>3.4.0</mybatis-plus.version>
  23. <mybatis.version>3.5.7</mybatis.version>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.cloud</groupId>
  29. <artifactId>spring-cloud-dependencies</artifactId>
  30. <version>${spring-cloud.version}</version>
  31. <type>pom</type>
  32. <scope>import</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis</groupId>
  36. <artifactId>mybatis</artifactId>
  37. <version>${mybatis.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. <version>${mybatis-plus.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-generator</artifactId>
  47. <version>${mybatis-plus.version}</version>
  48. </dependency>
  49. <!-- <dependency>-->
  50. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  51. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  52. <!-- <version>${mybatis-spring-boot-starter.version}</version>-->
  53. <!-- </dependency>-->
  54. </dependencies>
  55. </dependencyManagement>
  56. <dependencies>
  57. <!--访问静态资源-->
  58. <!-- <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  61. <version>3.0.1</version>
  62. </dependency>-->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  66. </dependency>
  67. <!-- springcloud组件 start -->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-starter-openfeign</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.cloud</groupId>
  82. <artifactId>spring-cloud-starter-config</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-actuator</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-test</artifactId>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-data-redis</artifactId>
  96. </dependency>
  97. <!-- <dependency>-->
  98. <!-- <groupId>org.springframework.boot</groupId>-->
  99. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  100. <!-- </dependency>-->
  101. <!-- springcloud组件 end -->
  102. <dependency>
  103. <groupId>org.projectlombok</groupId>
  104. <artifactId>lombok</artifactId>
  105. </dependency>
  106. <!-- mybatis-plus -->
  107. <dependency>
  108. <groupId>com.baomidou</groupId>
  109. <artifactId>mybatis-plus-boot-starter</artifactId>
  110. </dependency>
  111. <!--mybatisplus代码生成 start -->
  112. <dependency>
  113. <groupId>com.baomidou</groupId>
  114. <artifactId>mybatis-plus-generator</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.velocity</groupId>
  118. <artifactId>velocity-engine-core</artifactId>
  119. <version>2.2</version>
  120. </dependency>
  121. <!--mybatisplus代码生成 end -->
  122. <dependency>
  123. <groupId>mysql</groupId>
  124. <artifactId>mysql-connector-java</artifactId>
  125. </dependency>
  126. <!-- swagger2 -->
  127. <dependency>
  128. <groupId>com.github.xiaoymin</groupId>
  129. <artifactId>knife4j-spring-boot-starter</artifactId>
  130. <version>3.0.3</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>ch.ethz.ganymed</groupId>
  134. <artifactId>ganymed-ssh2</artifactId>
  135. <version>build210</version>
  136. </dependency>
  137. <!-- json -->
  138. <dependency>
  139. <groupId>com.alibaba</groupId>
  140. <artifactId>fastjson</artifactId>
  141. <version>1.2.75</version>
  142. </dependency>
  143. <!-- hutool -->
  144. <dependency>
  145. <groupId>cn.hutool</groupId>
  146. <artifactId>hutool-core</artifactId>
  147. <version>5.7.16</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>cn.hutool</groupId>
  151. <artifactId>hutool-http</artifactId>
  152. <version>5.7.16</version>
  153. </dependency>
  154. <!--生成二维码-->
  155. <dependency>
  156. <groupId>com.google.zxing</groupId>
  157. <artifactId>core</artifactId>
  158. <version>3.3.0</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.google.zxing</groupId>
  162. <artifactId>javase</artifactId>
  163. <version>3.3.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>commons-beanutils</groupId>
  167. <artifactId>commons-beanutils</artifactId>
  168. <version>1.8.3</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.hibernate</groupId>
  172. <artifactId>hibernate-core</artifactId>
  173. <version>3.6.10.Final</version>
  174. </dependency>
  175. <!-- 引入org.json所需依赖 -->
  176. <dependency>
  177. <groupId>org.json</groupId>
  178. <artifactId>json</artifactId>
  179. <version>20200518</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>commons-httpclient</groupId>
  183. <artifactId>commons-httpclient</artifactId>
  184. <version>3.1</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>log4j</groupId>
  188. <artifactId>log4j</artifactId>
  189. <version>1.2.16</version>
  190. </dependency>
  191. <!--杉德支付-->
  192. <dependency>
  193. <groupId>cn.com.sand</groupId>
  194. <artifactId>hmpay-sdk</artifactId>
  195. <version>1.1.4</version>
  196. </dependency>
  197. <!--汇付支付-->
  198. <dependency>
  199. <groupId>com.huifu.bspay.sdk</groupId>
  200. <artifactId>dg-java-sdk</artifactId>
  201. <version>3.0.13</version>
  202. </dependency>
  203. <!--rabbitmq-->
  204. <dependency>
  205. <groupId>org.springframework.boot</groupId>
  206. <artifactId>spring-boot-starter-amqp</artifactId>
  207. <version>2.1.3.RELEASE</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.springframework.cloud</groupId>
  211. <artifactId>spring-cloud-starter-bus-amqp</artifactId>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.springframework.amqp</groupId>
  215. <artifactId>spring-rabbit</artifactId>
  216. <version>2.3.6</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.springframework.amqp</groupId>
  220. <artifactId>spring-amqp</artifactId>
  221. <version>2.3.6</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>cn.com.crbank.ommo</groupId>
  225. <artifactId>EsBaseServer</artifactId>
  226. <version>1.2.11</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.commons</groupId>
  230. <artifactId>commons-collections4</artifactId>
  231. <version>4.3</version>
  232. </dependency>
  233. <!-- 个推 -->
  234. <dependency>
  235. <groupId>com.gexin.platform</groupId>
  236. <artifactId>gexin-rp-sdk-http</artifactId>
  237. <version>4.0.1.9</version>
  238. </dependency>
  239. <!--elasticsearch-->
  240. <dependency>
  241. <groupId>org.elasticsearch</groupId>
  242. <artifactId>elasticsearch</artifactId>
  243. <version>7.6.2</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.elasticsearch.client</groupId>
  247. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  248. <version>7.6.2</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.elasticsearch.client</groupId>
  252. <artifactId>elasticsearch-rest-client</artifactId>
  253. <version>7.6.2</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>com.google.code.gson</groupId>
  257. <artifactId>gson</artifactId>
  258. <version>2.9.1</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.squareup.okhttp3</groupId>
  262. <artifactId>okhttp</artifactId>
  263. <version>4.9.3</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>com.github.wechatpay-apiv3</groupId>
  267. <artifactId>wechatpay-java</artifactId>
  268. <version>0.2.7</version>
  269. </dependency>
  270. <!--微信支付SDK-->
  271. <dependency>
  272. <groupId>com.github.wechatpay-apiv3</groupId>
  273. <artifactId>wechatpay-apache-httpclient</artifactId>
  274. <version>0.3.0</version>
  275. </dependency>
  276. <!-- 支付宝支付SDK -->
  277. <dependency>
  278. <groupId>com.alipay.sdk</groupId>
  279. <artifactId>alipay-sdk-java</artifactId>
  280. <version>4.34.0.ALL</version>
  281. </dependency>
  282. </dependencies>
  283. <build>
  284. <resources>
  285. <resource>
  286. <directory>src/main/java</directory>
  287. <includes>
  288. <include>**/*.xml</include>
  289. <include>**/*.*</include>
  290. </includes>
  291. <!-- 是否替换资源中的属性 -->
  292. <filtering>false</filtering>
  293. </resource>
  294. <resource>
  295. <directory>src/main/resources</directory>
  296. <includes>
  297. <include>**/*.*</include>
  298. </includes>
  299. <!-- 是否替换资源中的属性 -->
  300. <filtering>false</filtering>
  301. </resource>
  302. </resources>
  303. <plugins>
  304. <plugin>
  305. <groupId>org.springframework.boot</groupId>
  306. <artifactId>spring-boot-maven-plugin</artifactId>
  307. <configuration>
  308. <layout>ZIP</layout>
  309. </configuration>
  310. </plugin>
  311. </plugins>
  312. </build>
  313. <repositories>
  314. <!--<repository>-->
  315. <!--<id>nexus</id>-->
  316. <!--<url>http://www.redouble.store:1888/repository/maven-public/</url>-->
  317. <!--<releases>-->
  318. <!--<enabled>true</enabled>-->
  319. <!--</releases>-->
  320. <!--<snapshots>-->
  321. <!--<enabled>false</enabled>-->
  322. <!--</snapshots>-->
  323. <!--</repository>-->
  324. <!-- 个推 -->
  325. <repository>
  326. <id>getui-nexus</id>
  327. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  328. </repository>
  329. <repository>
  330. <id>nexus</id>
  331. <url>http://120.25.151.99:1888/repository/crbank-host/</url>
  332. <releases>
  333. <enabled>true</enabled>
  334. </releases>
  335. <snapshots>
  336. <enabled>false</enabled>
  337. </snapshots>
  338. </repository>
  339. </repositories>
  340. </project>