pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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-agent</artifactId>
  7. <version>0.0.1</version>
  8. <packaging>jar</packaging>
  9. <name>depot-agent</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/>
  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.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <!-- 引入spring boot自带的pagehelper插件 -->
  43. <dependency>
  44. <groupId>com.github.pagehelper</groupId>
  45. <artifactId>pagehelper-spring-boot-starter</artifactId>
  46. <version>1.2.3</version>
  47. </dependency>
  48. <!-- 导入Eureka服务的依赖 -->
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  52. </dependency>
  53. <!-- swagger2 -->
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-swagger2</artifactId>
  57. <version>2.6.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger-ui</artifactId>
  62. <version>2.6.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-redis</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.session</groupId>
  70. <artifactId>spring-session-data-redis</artifactId>
  71. </dependency>
  72. <!-- 阿里巴巴json -->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>1.2.37</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.sf.json-lib</groupId>
  80. <artifactId>json-lib</artifactId>
  81. <version>2.4</version>
  82. <classifier>jdk15</classifier>
  83. </dependency>
  84. <dependency>
  85. <groupId>mysql</groupId>
  86. <artifactId>mysql-connector-java</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. <version>3.7</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-codec</groupId>
  95. <artifactId>commons-codec</artifactId>
  96. <version>1.9</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. <version>3.9</version>
  102. </dependency>
  103. <!-- 加载mybatis逆向生成工具包 -->
  104. <dependency>
  105. <groupId>org.mybatis.generator</groupId>
  106. <artifactId>mybatis-generator-core</artifactId>
  107. <!-- 注意版本.这里我使用的是1.3.2 -->
  108. <version>1.3.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.httpcomponents</groupId>
  112. <artifactId>httpcore</artifactId>
  113. <version>4.4.10</version>
  114. </dependency>
  115. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  116. <dependency>
  117. <groupId>org.apache.httpcomponents</groupId>
  118. <artifactId>httpclient</artifactId>
  119. <version>4.5.6</version>
  120. </dependency>
  121. <!--logging -->
  122. <!-- log4j -->
  123. <dependency>
  124. <groupId>org.slf4j</groupId>
  125. <artifactId>log4j-over-slf4j</artifactId>
  126. <version>2.0.0-alpha1</version>
  127. </dependency>
  128. <!--<dependency>-->
  129. <!--<groupId>org.springframework.boot</groupId>-->
  130. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  131. <!--<scope>provided</scope>-->
  132. <!--</dependency>-->
  133. </dependencies>
  134. <dependencyManagement>
  135. <dependencies>
  136. <dependency>
  137. <groupId>org.springframework.cloud</groupId>
  138. <artifactId>spring-cloud-dependencies</artifactId>
  139. <version>${spring-cloud.version}</version>
  140. <type>pom</type>
  141. <scope>import</scope>
  142. </dependency>
  143. </dependencies>
  144. </dependencyManagement>
  145. <distributionManagement>
  146. <repository>
  147. <id>nexus</id>
  148. <!--名称自己定义-->
  149. <name>agent</name>
  150. <url>http://10.10.1.25:8081/repository/host_repository/</url>
  151. </repository>
  152. </distributionManagement>
  153. <build>
  154. <finalName>${project.artifactId}</finalName>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. </plugin>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-surefire-plugin</artifactId>
  163. <configuration>
  164. <skip>true</skip>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-war-plugin</artifactId>
  170. <version>2.6</version>
  171. <configuration>
  172. <failOnMissingWebXml>false</failOnMissingWebXml>
  173. </configuration>
  174. </plugin>
  175. </plugins>
  176. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  177. <resources>
  178. <resource>
  179. <directory>src/main/java</directory>
  180. <includes>
  181. <include>**/*.properties</include>
  182. <include>**/*.xml</include>
  183. <include>**/*.store</include>
  184. </includes>
  185. <filtering>false</filtering>
  186. </resource>
  187. <resource>
  188. <directory>src/main/resources</directory>
  189. </resource>
  190. </resources>
  191. </build>
  192. <repositories>
  193. <repository>
  194. <id>spring-milestones</id>
  195. <name>Spring Milestones</name>
  196. <url>https://repo.spring.io/milestone</url>
  197. <snapshots>
  198. <enabled>false</enabled>
  199. </snapshots>
  200. </repository>
  201. </repositories>
  202. </project>