pom.xml 5.6 KB

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