pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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.chinaitop</groupId>
  7. <artifactId>depot-intelligent</artifactId>
  8. <version>0.0.1</version>
  9. <!--<packaging>jar</packaging>-->
  10. <packaging>war</packaging>
  11. <name>depot-intelligent</name>
  12. <description>Demo project for Spring Boot</description>
  13. <parent>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <version>2.0.2.RELEASE</version>
  17. <relativePath/> <!-- lookup parent from repository -->
  18. </parent>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <java.version>1.8</java.version>
  23. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-test</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-aop</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-starter-config</artifactId>
  41. </dependency>
  42. <!--添加webservice-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web-services</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.cxf</groupId>
  49. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  50. <version>3.2.4</version>
  51. </dependency>
  52. <!--添加webservice end-->
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>1.3.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. </dependency>
  62. <!-- 引入spring boot自带的pagehelper插件 -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper-spring-boot-starter</artifactId>
  66. <version>1.2.3</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.commons</groupId>
  74. <artifactId>commons-lang3</artifactId>
  75. </dependency>
  76. <!-- swagger2 -->
  77. <dependency>
  78. <groupId>io.springfox</groupId>
  79. <artifactId>springfox-swagger2</artifactId>
  80. <version>2.6.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-swagger-ui</artifactId>
  85. <version>2.6.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.poi</groupId>
  89. <artifactId>poi-ooxml</artifactId>
  90. <version>3.9</version>
  91. </dependency>
  92. <!--httpClient-->
  93. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpclient</artifactId>
  97. <version>4.5.6</version>
  98. </dependency>
  99. <!-- 阿里巴巴json -->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>1.2.37</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.google.code.gson</groupId>
  107. <artifactId>gson</artifactId>
  108. </dependency>
  109. <dependency><!-- 该依赖必加,里面有sping对schedule的支持 -->
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-context-support</artifactId>
  112. </dependency>
  113. <!-- 日志-->
  114. <dependency>
  115. <groupId>ch.qos.logback</groupId>
  116. <artifactId>logback-classic</artifactId>
  117. </dependency>
  118. <!--quartz定时任务-->
  119. <dependency>
  120. <groupId>org.quartz-scheduler</groupId>
  121. <artifactId>quartz</artifactId>
  122. <version>2.3.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.smslib</groupId>
  126. <artifactId>smslib</artifactId>
  127. <version>3.5.4</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>gun.RXTXcomm</groupId>
  131. <artifactId>RXTXcomm</artifactId>
  132. <version>2.0.1</version>
  133. </dependency>
  134. <!--短信发送平台jar包-->
  135. <dependency>
  136. <groupId>org.projectlombok</groupId>
  137. <artifactId>lombok</artifactId>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-starter-data-redis</artifactId>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>redis.clients</groupId>
  146. <artifactId>jedis</artifactId>
  147. </exclusion>
  148. <exclusion>
  149. <artifactId>lettuce-core</artifactId>
  150. <groupId>io.lettuce</groupId>
  151. </exclusion>
  152. </exclusions>
  153. </dependency>
  154. <dependency>
  155. <groupId>redis.clients</groupId>
  156. <artifactId>jedis</artifactId>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.commons</groupId>
  160. <artifactId>commons-pool2</artifactId>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.springframework.session</groupId>
  164. <artifactId>spring-session-data-redis</artifactId>
  165. </dependency>
  166. <!--http工具包-->
  167. <dependency>
  168. <groupId>org.apache.axis2</groupId>
  169. <artifactId>axis2-transport-http</artifactId>
  170. <version>1.7.8</version>
  171. </dependency>
  172. <!--dom解析-->
  173. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  174. <dependency>
  175. <groupId>dom4j</groupId>
  176. <artifactId>dom4j</artifactId>
  177. <version>1.6.1</version>
  178. </dependency>
  179. </dependencies>
  180. <dependencyManagement>
  181. <dependencies>
  182. <dependency>
  183. <groupId>org.springframework.cloud</groupId>
  184. <artifactId>spring-cloud-dependencies</artifactId>
  185. <version>${spring-cloud.version}</version>
  186. <type>pom</type>
  187. <scope>import</scope>
  188. </dependency>
  189. </dependencies>
  190. </dependencyManagement>
  191. <build>
  192. <finalName>${project.artifactId}</finalName>
  193. <plugins>
  194. <plugin>
  195. <groupId>org.springframework.boot</groupId>
  196. <artifactId>spring-boot-maven-plugin</artifactId>
  197. </plugin>
  198. <!--<plugin>
  199. <groupId>org.apache.maven.plugins</groupId>
  200. <artifactId>maven-jar-plugin</artifactId>
  201. <version>2.6</version>
  202. <configuration>
  203. <failOnMissingWebXml>false</failOnMissingWebXml>
  204. </configuration>
  205. </plugin>-->
  206. </plugins>
  207. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  208. <resources>
  209. <resource>
  210. <directory>src/main/java</directory>
  211. <includes>
  212. <include>**/*.properties</include>
  213. <include>**/*.xml</include>
  214. </includes>
  215. <!--<filtering>false</filtering>-->
  216. </resource>
  217. <resource>
  218. <directory>src/main/resources</directory>
  219. </resource>
  220. </resources>
  221. </build>
  222. <repositories>
  223. <repository>
  224. <id>spring-milestones</id>
  225. <name>Spring Milestones</name>
  226. <url>https://repo.spring.io/milestone</url>
  227. <snapshots>
  228. <enabled>false</enabled>
  229. </snapshots>
  230. </repository>
  231. </repositories>
  232. </project>