pom.xml 11 KB

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