pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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>orderServer</artifactId>
  8. <version>0.0.1</version>
  9. <packaging>jar</packaging>
  10. <name>orderServer</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. <!-- springcloud组件 start -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-web</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-starter-openfeign</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.cloud</groupId>
  72. <artifactId>spring-cloud-starter-config</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-actuator</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-data-redis</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.huifu.bspay.sdk</groupId>
  89. <artifactId>dg-java-sdk</artifactId>
  90. <version>3.0.8</version>
  91. </dependency>
  92. <!-- <dependency>-->
  93. <!-- <groupId>org.springframework.boot</groupId>-->
  94. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  95. <!-- </dependency>-->
  96. <!-- springcloud组件 end -->
  97. <dependency>
  98. <groupId>org.projectlombok</groupId>
  99. <artifactId>lombok</artifactId>
  100. </dependency>
  101. <!-- mybatis-plus -->
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>mybatis-plus-boot-starter</artifactId>
  105. </dependency>
  106. <!--mybatisplus代码生成 start -->
  107. <dependency>
  108. <groupId>com.baomidou</groupId>
  109. <artifactId>mybatis-plus-generator</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.velocity</groupId>
  113. <artifactId>velocity-engine-core</artifactId>
  114. <version>2.2</version>
  115. </dependency>
  116. <!--mybatisplus代码生成 end -->
  117. <dependency>
  118. <groupId>mysql</groupId>
  119. <artifactId>mysql-connector-java</artifactId>
  120. </dependency>
  121. <!-- swagger2 -->
  122. <dependency>
  123. <groupId>com.github.xiaoymin</groupId>
  124. <artifactId>knife4j-spring-boot-starter</artifactId>
  125. <version>3.0.3</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>ch.ethz.ganymed</groupId>
  129. <artifactId>ganymed-ssh2</artifactId>
  130. <version>build210</version>
  131. </dependency>
  132. <!-- json -->
  133. <dependency>
  134. <groupId>com.alibaba</groupId>
  135. <artifactId>fastjson</artifactId>
  136. <version>1.2.75</version>
  137. </dependency>
  138. <!-- hutool -->
  139. <dependency>
  140. <groupId>cn.hutool</groupId>
  141. <artifactId>hutool-core</artifactId>
  142. <version>5.7.16</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-beanutils</groupId>
  146. <artifactId>commons-beanutils</artifactId>
  147. <version>1.8.3</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.hibernate</groupId>
  151. <artifactId>hibernate-core</artifactId>
  152. <version>3.6.10.Final</version>
  153. </dependency>
  154. <!-- 引入org.json所需依赖 -->
  155. <dependency>
  156. <groupId>org.json</groupId>
  157. <artifactId>json</artifactId>
  158. <version>20200518</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-httpclient</groupId>
  162. <artifactId>commons-httpclient</artifactId>
  163. <version>3.1</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>log4j</groupId>
  167. <artifactId>log4j</artifactId>
  168. <version>1.2.16</version>
  169. </dependency>
  170. <!--杉德支付-->
  171. <dependency>
  172. <groupId>cn.com.sand</groupId>
  173. <artifactId>hmpay-sdk</artifactId>
  174. <version>1.1.4</version>
  175. </dependency>
  176. <!--rabbitmq-->
  177. <dependency>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-starter-amqp</artifactId>
  180. <version>2.1.3.RELEASE</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework.cloud</groupId>
  184. <artifactId>spring-cloud-starter-bus-amqp</artifactId>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework.amqp</groupId>
  188. <artifactId>spring-rabbit</artifactId>
  189. <version>2.3.6</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.springframework.amqp</groupId>
  193. <artifactId>spring-amqp</artifactId>
  194. <version>2.3.6</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>cn.com.crbank.ommo</groupId>
  198. <artifactId>EsBaseServer</artifactId>
  199. <version>1.2.11</version>
  200. </dependency>
  201. <!-- 个推 -->
  202. <dependency>
  203. <groupId>com.gexin.platform</groupId>
  204. <artifactId>gexin-rp-sdk-http</artifactId>
  205. <version>4.0.1.9</version>
  206. </dependency>
  207. <!-- 导出Excel -->
  208. <dependency>
  209. <groupId>cn.afterturn</groupId>
  210. <artifactId>easypoi-base</artifactId>
  211. <version>4.4.0</version>
  212. </dependency>
  213. <!-- easyexcel -->
  214. <dependency>
  215. <groupId>com.alibaba</groupId>
  216. <artifactId>easyexcel</artifactId>
  217. <version>3.3.2</version>
  218. </dependency>
  219. <!--定时任务-->
  220. <!-- <dependency>-->
  221. <!-- <groupId>org.springframework.boot</groupId>-->
  222. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  223. <!-- </dependency>-->
  224. <dependency>
  225. <groupId>org.springframework.boot</groupId>
  226. <artifactId>spring-boot-starter</artifactId>
  227. </dependency>
  228. <!-- <dependency>-->
  229. <!-- <groupId>org.projectlombok</groupId>-->
  230. <!-- <artifactId>lombok</artifactId>-->
  231. <!-- <optional>true</optional>-->
  232. <!-- </dependency>-->
  233. <!--<dependency>-->
  234. <!--<groupId>org.springframework.boot</groupId>-->
  235. <!--<artifactId>spring-boot-starter-test</artifactId>-->
  236. <!--<scope>test</scope>-->
  237. <!--</dependency>-->
  238. <!--elasticsearch-->
  239. <dependency>
  240. <groupId>org.elasticsearch</groupId>
  241. <artifactId>elasticsearch</artifactId>
  242. <version>7.6.2</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.elasticsearch.client</groupId>
  246. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  247. <version>7.6.2</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.elasticsearch.client</groupId>
  251. <artifactId>elasticsearch-rest-client</artifactId>
  252. <version>7.6.2</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.springframework.cloud</groupId>
  256. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  257. </dependency>
  258. </dependencies>
  259. <build>
  260. <resources>
  261. <resource>
  262. <directory>src/main/java</directory>
  263. <includes>
  264. <include>**/*.xml</include>
  265. <include>**/*.*</include>
  266. </includes>
  267. <!-- 是否替换资源中的属性 -->
  268. <filtering>false</filtering>
  269. </resource>
  270. <resource>
  271. <directory>src/main/resources</directory>
  272. <includes>
  273. <include>**/*.*</include>
  274. </includes>
  275. <!-- 是否替换资源中的属性 -->
  276. <filtering>false</filtering>
  277. </resource>
  278. </resources>
  279. <plugins>
  280. <plugin>
  281. <groupId>org.springframework.boot</groupId>
  282. <artifactId>spring-boot-maven-plugin</artifactId>
  283. <configuration>
  284. <layout>ZIP</layout>
  285. </configuration>
  286. </plugin>
  287. </plugins>
  288. </build>
  289. <repositories>
  290. <!--<repository>-->
  291. <!--<id>nexus</id>-->
  292. <!--<url>http://www.redouble.store:1888/repository/maven-public/</url>-->
  293. <!--<releases>-->
  294. <!--<enabled>true</enabled>-->
  295. <!--</releases>-->
  296. <!--<snapshots>-->
  297. <!--<enabled>false</enabled>-->
  298. <!--</snapshots>-->
  299. <!--</repository>-->
  300. <!-- 个推 -->
  301. <repository>
  302. <id>getui-nexus</id>
  303. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  304. </repository>
  305. <repository>
  306. <id>nexus</id>
  307. <url>http://120.25.151.99:1888/repository/crbank-host/</url>
  308. <releases>
  309. <enabled>true</enabled>
  310. </releases>
  311. <snapshots>
  312. <enabled>false</enabled>
  313. </snapshots>
  314. </repository>
  315. </repositories>
  316. </project>