pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.chinaitop</groupId>
  6. <artifactId>depot-system</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>depot-system</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.4.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-config</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. <version>1.3.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-security</artifactId>
  44. </dependency>
  45. <!-- 引入spring boot自带的pagehelper插件 -->
  46. <dependency>
  47. <groupId>com.github.pagehelper</groupId>
  48. <artifactId>pagehelper-spring-boot-starter</artifactId>
  49. <version>1.2.3</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-lang3</artifactId>
  54. <version>3.7</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/org.apache.directory.studio/org.apache.commons.codec -->
  57. <dependency>
  58. <groupId>org.apache.directory.studio</groupId>
  59. <artifactId>org.apache.commons.codec</artifactId>
  60. <version>1.8</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger2</artifactId>
  66. <version>2.9.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.springfox</groupId>
  70. <artifactId>springfox-swagger-ui</artifactId>
  71. <version>2.9.2</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>mysql</groupId>
  75. <artifactId>mysql-connector-java</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-data-redis</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.session</groupId>
  88. <artifactId>spring-session-data-redis</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.httpcomponents</groupId>
  92. <artifactId>httpcore</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpclient</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.google.code.gson</groupId>
  100. <artifactId>gson</artifactId>
  101. </dependency>
  102. <!-- webservice begin -->
  103. <dependency>
  104. <groupId>org.apache.cxf</groupId>
  105. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  106. <version>3.1.10</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.cxf</groupId>
  110. <artifactId>cxf-rt-transports-http</artifactId>
  111. <version>3.1.10</version>
  112. </dependency>
  113. <!-- webservice end -->
  114. <dependency>
  115. <groupId>com.alibaba</groupId>
  116. <artifactId>fastjson</artifactId>
  117. <version>1.2.41</version>
  118. </dependency>
  119. <!-- sftp上传依赖包 -->
  120. <dependency>
  121. <groupId>com.jcraft</groupId>
  122. <artifactId>jsch</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-io</artifactId>
  127. <version>1.3.2</version>
  128. </dependency>
  129. <!-- gbase依赖包 -->
  130. <dependency>
  131. <groupId>com.gbase8s</groupId>
  132. <artifactId>ifxjdbc</artifactId>
  133. <version>1.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.gbase</groupId>
  137. <artifactId>druid</artifactId>
  138. <version>1.0.28</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-starter-test</artifactId>
  143. <scope>test</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>javax.xml.bind</groupId>
  147. <artifactId>jaxb-api</artifactId>
  148. <version>2.2.12</version>
  149. </dependency>
  150. </dependencies>
  151. <dependencyManagement>
  152. <dependencies>
  153. <dependency>
  154. <groupId>org.springframework.cloud</groupId>
  155. <artifactId>spring-cloud-dependencies</artifactId>
  156. <version>${spring-cloud.version}</version>
  157. <type>pom</type>
  158. <scope>import</scope>
  159. </dependency>
  160. </dependencies>
  161. </dependencyManagement>
  162. <build>
  163. <finalName>${project.artifactId}</finalName>
  164. <plugins>
  165. <plugin>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-maven-plugin</artifactId>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-compiler-plugin</artifactId>
  172. <configuration>
  173. <source>${java.version}</source>
  174. <target>${java.version}</target>
  175. </configuration>
  176. </plugin>
  177. </plugins>
  178. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  179. <resources>
  180. <resource>
  181. <directory>src/main/java</directory>
  182. <includes>
  183. <include>**/*.properties</include>
  184. <include>**/*.xml</include>
  185. </includes>
  186. <filtering>false</filtering>
  187. </resource>
  188. <resource>
  189. <directory>src/main/resources</directory>
  190. </resource>
  191. </resources>
  192. </build>
  193. <repositories>
  194. <repository>
  195. <id>spring-milestones</id>
  196. <name>Spring Milestones</name>
  197. <url>https://repo.spring.io/milestone</url>
  198. </repository>
  199. </repositories>
  200. </project>