pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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-qualitycheck-qinghai</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>depot-qualitycheck-qinghai</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.2.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. <skipTests>true</skipTests>
  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.mybatis.spring.boot</groupId>
  31. <artifactId>mybatis-spring-boot-starter</artifactId>
  32. <version>1.3.1</version>
  33. </dependency>
  34. <!-- 引入spring boot自带的pagehelper插件 -->
  35. <dependency>
  36. <groupId>com.github.pagehelper</groupId>
  37. <artifactId>pagehelper-spring-boot-starter</artifactId>
  38. <version>1.2.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-config</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. <version>3.7</version>
  52. </dependency>
  53. <!--log4j-->
  54. <dependency>
  55. <groupId>log4j</groupId>
  56. <artifactId>log4j</artifactId>
  57. <version>1.2.17</version>
  58. </dependency>
  59. <!--poi-->
  60. <dependency>
  61. <groupId>org.apache.poi</groupId>
  62. <artifactId>poi-ooxml</artifactId>
  63. <version>4.1.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-redis</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.session</groupId>
  71. <artifactId>spring-session-data-redis</artifactId>
  72. </dependency>
  73. <!-- 二维码包-->
  74. <dependency>
  75. <groupId>com.google.zxing</groupId>
  76. <artifactId>core</artifactId>
  77. <version>3.3.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.google.zxing</groupId>
  81. <artifactId>javase</artifactId>
  82. <version>3.3.1</version>
  83. </dependency>
  84. <!-- 二维码包end-->
  85. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  86. <dependency>
  87. <groupId>org.apache.httpcomponents</groupId>
  88. <artifactId>httpclient</artifactId>
  89. <version>4.5.6</version>
  90. </dependency>
  91. <!-- swagger2 -->
  92. <dependency>
  93. <groupId>io.springfox</groupId>
  94. <artifactId>springfox-swagger2</artifactId>
  95. <version>2.9.2</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>io.springfox</groupId>
  99. <artifactId>springfox-swagger-ui</artifactId>
  100. <version>2.9.2</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>mysql</groupId>
  104. <artifactId>mysql-connector-java</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-test</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. <!-- 加载mybatis逆向生成工具包 -->
  112. <dependency>
  113. <groupId>org.mybatis.generator</groupId>
  114. <artifactId>mybatis-generator-core</artifactId>
  115. <!-- 注意版本.这里我使用的是1.3.2 -->
  116. <version>1.3.2</version>
  117. </dependency>
  118. <!--添加webservice-->
  119. <dependency>
  120. <groupId>org.apache.cxf</groupId>
  121. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  122. <version>3.2.4</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-web-services</artifactId>
  127. </dependency>
  128. <!-- feign -->
  129. <dependency>
  130. <groupId>org.springframework.cloud</groupId>
  131. <artifactId>spring-cloud-starter-openfeign</artifactId>
  132. </dependency>
  133. <!-- hystrix 熔断-->
  134. <dependency>
  135. <groupId>org.springframework.cloud</groupId>
  136. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  137. </dependency>
  138. <!-- JSONObject jar包 -->
  139. <dependency>
  140. <groupId>net.sf.json-lib</groupId>
  141. <artifactId>json-lib</artifactId>
  142. <version>2.4</version>
  143. <classifier>jdk15</classifier>
  144. </dependency>
  145. <!-- 阿里巴巴json -->
  146. <dependency>
  147. <groupId>com.alibaba</groupId>
  148. <artifactId>fastjson</artifactId>
  149. <version>1.2.4</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.projectlombok</groupId>
  153. <artifactId>lombok</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.projectlombok</groupId>
  157. <artifactId>lombok</artifactId>
  158. </dependency>
  159. </dependencies>
  160. <dependencyManagement>
  161. <dependencies>
  162. <dependency>
  163. <groupId>org.springframework.cloud</groupId>
  164. <artifactId>spring-cloud-dependencies</artifactId>
  165. <version>${spring-cloud.version}</version>
  166. <type>pom</type>
  167. <scope>import</scope>
  168. </dependency>
  169. </dependencies>
  170. </dependencyManagement>
  171. <build>
  172. <finalName>${project.artifactId}</finalName>
  173. <plugins>
  174. <plugin>
  175. <groupId>org.springframework.boot</groupId>
  176. <artifactId>spring-boot-maven-plugin</artifactId>
  177. </plugin>
  178. </plugins>
  179. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  180. <resources>
  181. <resource>
  182. <directory>src/main/java</directory>
  183. <includes>
  184. <include>**/*.properties</include>
  185. <include>**/*.xml</include>
  186. </includes>
  187. <filtering>false</filtering>
  188. </resource>
  189. <resource>
  190. <directory>src/main/resources</directory>
  191. </resource>
  192. </resources>
  193. </build>
  194. <repositories>
  195. <repository>
  196. <id>spring-milestones</id>
  197. <name>Spring Milestones</name>
  198. <url>https://repo.spring.io/milestone</url>
  199. <snapshots>
  200. <enabled>false</enabled>
  201. </snapshots>
  202. </repository>
  203. </repositories>
  204. </project>