pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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-jdbc</artifactId>-->
  96. <!-- </dependency>-->
  97. <!-- springcloud组件 end -->
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. </dependency>
  102. <!-- mybatis-plus -->
  103. <dependency>
  104. <groupId>com.baomidou</groupId>
  105. <artifactId>mybatis-plus-boot-starter</artifactId>
  106. </dependency>
  107. <!--mybatisplus代码生成 start -->
  108. <dependency>
  109. <groupId>com.baomidou</groupId>
  110. <artifactId>mybatis-plus-generator</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.velocity</groupId>
  114. <artifactId>velocity-engine-core</artifactId>
  115. <version>2.2</version>
  116. </dependency>
  117. <!--mybatisplus代码生成 end -->
  118. <dependency>
  119. <groupId>mysql</groupId>
  120. <artifactId>mysql-connector-java</artifactId>
  121. </dependency>
  122. <!-- swagger2 -->
  123. <dependency>
  124. <groupId>com.github.xiaoymin</groupId>
  125. <artifactId>knife4j-spring-boot-starter</artifactId>
  126. <version>3.0.3</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>ch.ethz.ganymed</groupId>
  130. <artifactId>ganymed-ssh2</artifactId>
  131. <version>build210</version>
  132. </dependency>
  133. <!-- json -->
  134. <dependency>
  135. <groupId>com.alibaba</groupId>
  136. <artifactId>fastjson</artifactId>
  137. <version>1.2.75</version>
  138. </dependency>
  139. <!-- hutool -->
  140. <dependency>
  141. <groupId>cn.hutool</groupId>
  142. <artifactId>hutool-core</artifactId>
  143. <version>5.7.16</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>cn.hutool</groupId>
  147. <artifactId>hutool-http</artifactId>
  148. <version>5.7.16</version>
  149. </dependency>
  150. <!--生成二维码-->
  151. <dependency>
  152. <groupId>com.google.zxing</groupId>
  153. <artifactId>core</artifactId>
  154. <version>3.3.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.google.zxing</groupId>
  158. <artifactId>javase</artifactId>
  159. <version>3.3.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>commons-beanutils</groupId>
  163. <artifactId>commons-beanutils</artifactId>
  164. <version>1.8.3</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.hibernate</groupId>
  168. <artifactId>hibernate-core</artifactId>
  169. <version>3.6.10.Final</version>
  170. </dependency>
  171. <!-- 引入org.json所需依赖 -->
  172. <dependency>
  173. <groupId>org.json</groupId>
  174. <artifactId>json</artifactId>
  175. <version>20200518</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>commons-httpclient</groupId>
  179. <artifactId>commons-httpclient</artifactId>
  180. <version>3.1</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>log4j</groupId>
  184. <artifactId>log4j</artifactId>
  185. <version>1.2.16</version>
  186. </dependency>
  187. <!--杉德支付-->
  188. <dependency>
  189. <groupId>cn.com.sand</groupId>
  190. <artifactId>hmpay-sdk</artifactId>
  191. <version>1.1.4</version>
  192. </dependency>
  193. <!--汇付支付-->
  194. <dependency>
  195. <groupId>com.huifu.bspay.sdk</groupId>
  196. <artifactId>dg-java-sdk</artifactId>
  197. <version>3.0.8</version>
  198. </dependency>
  199. <!--rabbitmq-->
  200. <dependency>
  201. <groupId>org.springframework.boot</groupId>
  202. <artifactId>spring-boot-starter-amqp</artifactId>
  203. <version>2.1.3.RELEASE</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.springframework.cloud</groupId>
  207. <artifactId>spring-cloud-starter-bus-amqp</artifactId>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.springframework.amqp</groupId>
  211. <artifactId>spring-rabbit</artifactId>
  212. <version>2.3.6</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.springframework.amqp</groupId>
  216. <artifactId>spring-amqp</artifactId>
  217. <version>2.3.6</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>cn.com.crbank.ommo</groupId>
  221. <artifactId>EsBaseServer</artifactId>
  222. <version>1.2.11</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.commons</groupId>
  226. <artifactId>commons-collections4</artifactId>
  227. <version>4.3</version>
  228. </dependency>
  229. <!-- 个推 -->
  230. <dependency>
  231. <groupId>com.gexin.platform</groupId>
  232. <artifactId>gexin-rp-sdk-http</artifactId>
  233. <version>4.0.1.9</version>
  234. </dependency>
  235. <!--elasticsearch-->
  236. <dependency>
  237. <groupId>org.elasticsearch</groupId>
  238. <artifactId>elasticsearch</artifactId>
  239. <version>7.6.2</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.elasticsearch.client</groupId>
  243. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  244. <version>7.6.2</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.elasticsearch.client</groupId>
  248. <artifactId>elasticsearch-rest-client</artifactId>
  249. <version>7.6.2</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>com.google.code.gson</groupId>
  253. <artifactId>gson</artifactId>
  254. <version>2.9.1</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>com.squareup.okhttp3</groupId>
  258. <artifactId>okhttp</artifactId>
  259. <version>4.9.3</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>com.github.wechatpay-apiv3</groupId>
  263. <artifactId>wechatpay-java</artifactId>
  264. <version>0.2.7</version>
  265. </dependency>
  266. <!--微信支付SDK-->
  267. <dependency>
  268. <groupId>com.github.wechatpay-apiv3</groupId>
  269. <artifactId>wechatpay-apache-httpclient</artifactId>
  270. <version>0.3.0</version>
  271. </dependency>
  272. </dependencies>
  273. <build>
  274. <resources>
  275. <resource>
  276. <directory>src/main/java</directory>
  277. <includes>
  278. <include>**/*.xml</include>
  279. <include>**/*.*</include>
  280. </includes>
  281. <!-- 是否替换资源中的属性 -->
  282. <filtering>false</filtering>
  283. </resource>
  284. <resource>
  285. <directory>src/main/resources</directory>
  286. <includes>
  287. <include>**/*.*</include>
  288. </includes>
  289. <!-- 是否替换资源中的属性 -->
  290. <filtering>false</filtering>
  291. </resource>
  292. </resources>
  293. <plugins>
  294. <plugin>
  295. <groupId>org.springframework.boot</groupId>
  296. <artifactId>spring-boot-maven-plugin</artifactId>
  297. <configuration>
  298. <layout>ZIP</layout>
  299. </configuration>
  300. </plugin>
  301. </plugins>
  302. </build>
  303. <repositories>
  304. <!--<repository>-->
  305. <!--<id>nexus</id>-->
  306. <!--<url>http://www.redouble.store:1888/repository/maven-public/</url>-->
  307. <!--<releases>-->
  308. <!--<enabled>true</enabled>-->
  309. <!--</releases>-->
  310. <!--<snapshots>-->
  311. <!--<enabled>false</enabled>-->
  312. <!--</snapshots>-->
  313. <!--</repository>-->
  314. <!-- 个推 -->
  315. <repository>
  316. <id>getui-nexus</id>
  317. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  318. </repository>
  319. <repository>
  320. <id>nexus</id>
  321. <url>http://120.25.151.99:1888/repository/crbank-host/</url>
  322. <releases>
  323. <enabled>true</enabled>
  324. </releases>
  325. <snapshots>
  326. <enabled>false</enabled>
  327. </snapshots>
  328. </repository>
  329. </repositories>
  330. </project>