pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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.springframework.cloud</groupId>
  49. <artifactId>spring-cloud-starter-openfeign</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-lang3</artifactId>
  54. <version>3.7</version>
  55. </dependency>
  56. <!-- gbase依赖包 -->
  57. <dependency>
  58. <groupId>com.gbase8s</groupId>
  59. <artifactId>ifxjdbc</artifactId>
  60. <version>1.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.gbase</groupId>
  64. <artifactId>druid</artifactId>
  65. <version>1.0.28</version>
  66. </dependency>
  67. <!--log4j-->
  68. <dependency>
  69. <groupId>log4j</groupId>
  70. <artifactId>log4j</artifactId>
  71. <version>1.2.17</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.session</groupId>
  79. <artifactId>spring-session-data-redis</artifactId>
  80. </dependency>
  81. <!-- 二维码包-->
  82. <dependency>
  83. <groupId>com.google.zxing</groupId>
  84. <artifactId>core</artifactId>
  85. <version>3.3.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.google.zxing</groupId>
  89. <artifactId>javase</artifactId>
  90. <version>3.3.1</version>
  91. </dependency>
  92. <!-- 二维码包end-->
  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. <!-- swagger2 -->
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger2</artifactId>
  103. <version>2.6.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>io.springfox</groupId>
  107. <artifactId>springfox-swagger-ui</artifactId>
  108. <version>2.6.1</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>mysql</groupId>
  112. <artifactId>mysql-connector-java</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-test</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <!-- 加载mybatis逆向生成工具包 -->
  120. <dependency>
  121. <groupId>org.mybatis.generator</groupId>
  122. <artifactId>mybatis-generator-core</artifactId>
  123. <!-- 注意版本.这里我使用的是1.3.2 -->
  124. <version>1.3.2</version>
  125. </dependency>
  126. <!--添加webservice-->
  127. <dependency>
  128. <groupId>org.apache.cxf</groupId>
  129. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  130. <version>3.2.4</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-web-services</artifactId>
  135. </dependency>
  136. <!-- feign -->
  137. <dependency>
  138. <groupId>org.springframework.cloud</groupId>
  139. <artifactId>spring-cloud-starter-openfeign</artifactId>
  140. </dependency>
  141. <!-- hystrix 熔断-->
  142. <dependency>
  143. <groupId>org.springframework.cloud</groupId>
  144. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  145. </dependency>
  146. <!-- JSONObject jar包 -->
  147. <dependency>
  148. <groupId>net.sf.json-lib</groupId>
  149. <artifactId>json-lib</artifactId>
  150. <version>2.4</version>
  151. <classifier>jdk15</classifier>
  152. </dependency>
  153. <!-- 阿里巴巴json -->
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>fastjson</artifactId>
  157. <version>1.2.4</version>
  158. </dependency>
  159. <!-- lombok-->
  160. <dependency>
  161. <groupId>org.projectlombok</groupId>
  162. <artifactId>lombok</artifactId>
  163. <version>1.18.22</version>
  164. <scope>provided</scope>
  165. </dependency>
  166. </dependencies>
  167. <dependencyManagement>
  168. <dependencies>
  169. <dependency>
  170. <groupId>org.springframework.cloud</groupId>
  171. <artifactId>spring-cloud-dependencies</artifactId>
  172. <version>${spring-cloud.version}</version>
  173. <type>pom</type>
  174. <scope>import</scope>
  175. </dependency>
  176. </dependencies>
  177. </dependencyManagement>
  178. <build>
  179. <finalName>${project.artifactId}</finalName>
  180. <plugins>
  181. <plugin>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-maven-plugin</artifactId>
  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>