pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>depot-intelligent</name>
  11. <description>Demo project for Spring Boot</description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.0.0.RELEASE</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-aop</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-config</artifactId>
  36. </dependency>
  37. <!--添加webservice-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web-services</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.cxf</groupId>
  44. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  45. <version>3.1.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.cxf</groupId>
  49. <artifactId>cxf-rt-transports-http</artifactId>
  50. <version>3.1.6</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>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-security</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. </dependency>
  66. <!-- 引入spring boot自带的pagehelper插件 -->
  67. <dependency>
  68. <groupId>com.github.pagehelper</groupId>
  69. <artifactId>pagehelper-spring-boot-starter</artifactId>
  70. <version>1.2.3</version>
  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.apache.commons</groupId>
  78. <artifactId>commons-lang3</artifactId>
  79. </dependency>
  80. <!-- swagger2 -->
  81. <dependency>
  82. <groupId>io.springfox</groupId>
  83. <artifactId>springfox-swagger2</artifactId>
  84. <version>2.6.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.springfox</groupId>
  88. <artifactId>springfox-swagger-ui</artifactId>
  89. <version>2.6.1</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <!-- <scope>test</scope>-->
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.poi</groupId>
  98. <artifactId>poi-ooxml</artifactId>
  99. <version>3.9</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.httpcomponents</groupId>
  103. <artifactId>httpclient</artifactId>
  104. <version>4.5.6</version>
  105. </dependency>
  106. <!-- 阿里巴巴json -->
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <version>1.2.37</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>net.sf.json-lib</groupId>
  114. <artifactId>json-lib</artifactId>
  115. <version>2.4</version>
  116. <classifier>jdk15</classifier>
  117. </dependency>
  118. <dependency><!-- 该依赖必加,里面有sping对schedule的支持 -->
  119. <groupId>org.springframework</groupId>
  120. <artifactId>spring-context-support</artifactId>
  121. </dependency>
  122. <!-- 日志-->
  123. <dependency>
  124. <groupId>ch.qos.logback</groupId>
  125. <artifactId>logback-classic</artifactId>
  126. </dependency>
  127. <!--quartz定时任务-->
  128. <dependency>
  129. <groupId>org.quartz-scheduler</groupId>
  130. <artifactId>quartz</artifactId>
  131. <version>2.3.0</version>
  132. </dependency>
  133. <!--短信发送平台jar包-->
  134. <dependency>
  135. <groupId>org.projectlombok</groupId>
  136. <artifactId>lombok</artifactId>
  137. <optional>true</optional>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-starter-data-redis</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.session</groupId>
  145. <artifactId>spring-session-data-redis</artifactId>
  146. </dependency>
  147. <!-- gbase依赖包 -->
  148. <dependency>
  149. <groupId>com.gbase8s</groupId>
  150. <artifactId>ifxjdbc</artifactId>
  151. <version>1.0</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.gbase</groupId>
  155. <artifactId>druid</artifactId>
  156. <version>1.0.28</version>
  157. </dependency>
  158. </dependencies>
  159. <dependencyManagement>
  160. <dependencies>
  161. <dependency>
  162. <groupId>org.springframework.cloud</groupId>
  163. <artifactId>spring-cloud-dependencies</artifactId>
  164. <version>${spring-cloud.version}</version>
  165. <type>pom</type>
  166. <scope>import</scope>
  167. </dependency>
  168. </dependencies>
  169. </dependencyManagement>
  170. <build>
  171. <finalName>${project.artifactId}</finalName>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-maven-plugin</artifactId>
  176. </plugin>
  177. <!--<plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-jar-plugin</artifactId>
  180. <version>2.6</version>
  181. <configuration>
  182. <failOnMissingWebXml>false</failOnMissingWebXml>
  183. </configuration>
  184. </plugin>-->
  185. </plugins>
  186. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  187. <resources>
  188. <resource>
  189. <directory>src/main/java</directory>
  190. <includes>
  191. <include>**/*.properties</include>
  192. <include>**/*.xml</include>
  193. </includes>
  194. <!--<filtering>false</filtering>-->
  195. </resource>
  196. <resource>
  197. <directory>src/main/resources</directory>
  198. </resource>
  199. </resources>
  200. </build>
  201. <repositories>
  202. <repository>
  203. <id>spring-milestones</id>
  204. <name>Spring Milestones</name>
  205. <url>https://repo.spring.io/milestone</url>
  206. <snapshots>
  207. <enabled>false</enabled>
  208. </snapshots>
  209. </repository>
  210. </repositories>
  211. </project>