pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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>org.example</groupId>
  7. <artifactId>devopsServer</artifactId>
  8. <version>1.0</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.platform</groupId>
  17. <artifactId>dubbo-service-interface</artifactId>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper-spring-boot-starter</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. <version>1.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.11</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-api</artifactId>
  35. <version>1.8.0-alpha2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-all</artifactId>
  40. <version>4.1.2</version>
  41. </dependency>
  42. <!-- Spring -->
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-context</artifactId>
  46. <version>5.1.10.RELEASE</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-beans</artifactId>
  51. <version>5.1.10.RELEASE</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-webmvc</artifactId>
  56. <version>5.1.10.RELEASE</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-jdbc</artifactId>
  61. <version>5.1.10.RELEASE</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-aspects</artifactId>
  66. <version>5.1.10.RELEASE</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-jms</artifactId>
  71. <version>5.1.10.RELEASE</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-context-support</artifactId>
  76. <version>5.1.10.RELEASE</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.servlet</groupId>
  80. <artifactId>jsp-api</artifactId>
  81. <version>2.0</version>
  82. </dependency>
  83. <!-- Httpclient -->
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpclient</artifactId>
  87. <version>4.5.3</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.google.code.gson</groupId>
  91. <artifactId>gson</artifactId>
  92. <version>2.8.5</version>
  93. </dependency>
  94. <!-- Redis客户端 -->
  95. <dependency>
  96. <groupId>redis.clients</groupId>
  97. <artifactId>jedis</artifactId>
  98. <version>2.9.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.squareup.okhttp3</groupId>
  102. <artifactId>okhttp</artifactId>
  103. <version>3.14.4</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>io.swagger</groupId>
  107. <artifactId>swagger-annotations</artifactId>
  108. <version>1.5.10</version>
  109. </dependency>
  110. <!-- swagger2 -->
  111. <dependency>
  112. <groupId>io.springfox</groupId>
  113. <artifactId>springfox-swagger2</artifactId>
  114. <version>2.7.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.springfox</groupId>
  118. <artifactId>springfox-swagger-ui</artifactId>
  119. <version>2.7.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.mybatis</groupId>
  123. <artifactId>mybatis</artifactId>
  124. <version>3.4.5</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.mybatis</groupId>
  128. <artifactId>mybatis-spring</artifactId>
  129. <version>1.3.1</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.github.miemiedev</groupId>
  133. <artifactId>mybatis-paginator</artifactId>
  134. <version>1.2.15</version>
  135. </dependency>
  136. <!-- MySql -->
  137. <dependency>
  138. <groupId>mysql</groupId>
  139. <artifactId>mysql-connector-java</artifactId>
  140. <version>5.1.44</version>
  141. </dependency>
  142. <!-- 连接池 -->
  143. <dependency>
  144. <groupId>com.alibaba</groupId>
  145. <artifactId>druid</artifactId>
  146. <version>1.1.4</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>junit</groupId>
  150. <artifactId>junit</artifactId>
  151. <version>4.12</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.activemq</groupId>
  155. <artifactId>activemq-all</artifactId>
  156. <version>5.11.2</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>javax.jms</groupId>
  160. <artifactId>javax.jms-api</artifactId>
  161. <version>2.0.1</version>
  162. </dependency>
  163. <!--shiro-->
  164. <dependency>
  165. <groupId>org.apache.shiro</groupId>
  166. <artifactId>shiro-all</artifactId>
  167. <version>1.4.0</version>
  168. </dependency>
  169. <!-- Mail -->
  170. <dependency>
  171. <groupId>javax.mail</groupId>
  172. <artifactId>mail</artifactId>
  173. <version>1.5.0-b01</version>
  174. </dependency>
  175. <!--Elasticsearch-->
  176. <dependency>
  177. <groupId>org.elasticsearch.client</groupId>
  178. <artifactId>transport</artifactId>
  179. <version>6.2.3</version>
  180. </dependency>
  181. <!--Log4j 2-->
  182. <dependency>
  183. <groupId>org.apache.logging.log4j</groupId>
  184. <artifactId>log4j-core</artifactId>
  185. <version>2.9.1</version>
  186. </dependency>
  187. <!--add begin-->
  188. <!-- 时间操作组件 -->
  189. <dependency>
  190. <groupId>joda-time</groupId>
  191. <artifactId>joda-time</artifactId>
  192. <version>2.9.9</version>
  193. </dependency>
  194. <!-- Apache工具组件 -->
  195. <dependency>
  196. <groupId>org.apache.commons</groupId>
  197. <artifactId>commons-lang3</artifactId>
  198. <version>3.3.2</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.commons</groupId>
  202. <artifactId>commons-io</artifactId>
  203. <version>1.3.2</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>commons-net</groupId>
  207. <artifactId>commons-net</artifactId>
  208. <version>3.3</version>
  209. </dependency>
  210. <!-- 日志处理 -->
  211. <dependency>
  212. <groupId>org.slf4j</groupId>
  213. <artifactId>slf4j-log4j12</artifactId>
  214. <version>1.8.0-alpha2</version>
  215. </dependency>
  216. <!-- 七牛云图片上传SDK -->
  217. <dependency>
  218. <groupId>com.qiniu</groupId>
  219. <artifactId>qiniu-java-sdk</artifactId>
  220. <version>7.2.26</version>
  221. </dependency>
  222. <!-- 文件上传组件 -->
  223. <dependency>
  224. <groupId>commons-fileupload</groupId>
  225. <artifactId>commons-fileupload</artifactId>
  226. <version>1.3.3</version>
  227. </dependency>
  228. <!-- Json -->
  229. <dependency>
  230. <groupId>org.json</groupId>
  231. <artifactId>json</artifactId>
  232. <version>20171018</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>com.fasterxml.jackson.core</groupId>
  236. <artifactId>jackson-core</artifactId>
  237. <version>2.9.1</version>
  238. <scope>runtime</scope>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.fasterxml.jackson.core</groupId>
  242. <artifactId>jackson-annotations</artifactId>
  243. <version>2.9.1</version>
  244. <scope>runtime</scope>
  245. </dependency>
  246. <dependency>
  247. <groupId>com.fasterxml.jackson.core</groupId>
  248. <artifactId>jackson-databind</artifactId>
  249. <version>2.9.1</version>
  250. <scope>runtime</scope>
  251. </dependency>
  252. <dependency>
  253. <groupId>com.alibaba</groupId>
  254. <artifactId>dubbo</artifactId>
  255. <version>2.6.1</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.zookeeper</groupId>
  259. <artifactId>zookeeper</artifactId>
  260. <version>3.4.14</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.curator</groupId>
  264. <artifactId>curator-framework</artifactId>
  265. <version>4.0.1</version>
  266. </dependency>
  267. </dependencies>
  268. <build>
  269. <finalName>devopsServer</finalName>
  270. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  271. <plugins>
  272. <plugin>
  273. <artifactId>maven-clean-plugin</artifactId>
  274. <version>3.1.0</version>
  275. </plugin>
  276. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  277. <plugin>
  278. <artifactId>maven-resources-plugin</artifactId>
  279. <version>3.0.2</version>
  280. </plugin>
  281. <plugin>
  282. <artifactId>maven-compiler-plugin</artifactId>
  283. <version>3.8.0</version>
  284. </plugin>
  285. <plugin>
  286. <artifactId>maven-surefire-plugin</artifactId>
  287. <version>2.22.1</version>
  288. </plugin>
  289. <plugin>
  290. <artifactId>maven-war-plugin</artifactId>
  291. <version>3.2.2</version>
  292. </plugin>
  293. <plugin>
  294. <artifactId>maven-install-plugin</artifactId>
  295. <version>2.5.2</version>
  296. </plugin>
  297. <plugin>
  298. <artifactId>maven-deploy-plugin</artifactId>
  299. <version>2.8.2</version>
  300. </plugin>
  301. </plugins>
  302. </pluginManagement>
  303. <resources>
  304. <resource>
  305. <directory>src/main/java</directory>
  306. <includes>
  307. <include>**/*.properties</include>
  308. <include>**/*.xml</include>
  309. </includes>
  310. <filtering>true</filtering>
  311. </resource>
  312. <resource>
  313. <directory>src/main/resources</directory>
  314. <includes>
  315. <include>**/*.properties</include>
  316. <include>**/*.xml</include>
  317. </includes>
  318. <filtering>true</filtering>
  319. </resource>
  320. </resources>
  321. </build>
  322. </project>