pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <!-- 引入spring boot自带的pagehelper插件 -->
  47. <dependency>
  48. <groupId>com.github.pagehelper</groupId>
  49. <artifactId>pagehelper-spring-boot-starter</artifactId>
  50. <version>1.2.3</version>
  51. </dependency>
  52. <!-- 导入Eureka服务的依赖 -->
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  56. </dependency>
  57. <!-- swagger2 -->
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger2</artifactId>
  61. <version>2.6.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger-ui</artifactId>
  66. <version>2.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-redis</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.session</groupId>
  74. <artifactId>spring-session-data-redis</artifactId>
  75. </dependency>
  76. <!-- 阿里巴巴json -->
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. <version>1.2.37</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>net.sf.json-lib</groupId>
  84. <artifactId>json-lib</artifactId>
  85. <version>2.4</version>
  86. <classifier>jdk15</classifier>
  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.springframework.boot</groupId>-->
  112. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  113. <!--<scope>provided</scope>-->
  114. <!--</dependency>-->
  115. </dependencies>
  116. <dependencyManagement>
  117. <dependencies>
  118. <dependency>
  119. <groupId>org.springframework.cloud</groupId>
  120. <artifactId>spring-cloud-dependencies</artifactId>
  121. <version>${spring-cloud.version}</version>
  122. <type>pom</type>
  123. <scope>import</scope>
  124. </dependency>
  125. </dependencies>
  126. </dependencyManagement>
  127. <distributionManagement>
  128. <repository>
  129. <id>nexus</id>
  130. <!--名称自己定义-->
  131. <name>agent</name>
  132. <url>http://10.10.1.25:8081/repository/host_repository/</url>
  133. </repository>
  134. </distributionManagement>
  135. <build>
  136. <finalName>${project.artifactId}</finalName>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-surefire-plugin</artifactId>
  145. <configuration>
  146. <skip>true</skip>
  147. </configuration>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-war-plugin</artifactId>
  152. <version>2.6</version>
  153. <configuration>
  154. <failOnMissingWebXml>false</failOnMissingWebXml>
  155. </configuration>
  156. </plugin>
  157. </plugins>
  158. <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
  159. <resources>
  160. <resource>
  161. <directory>src/main/java</directory>
  162. <includes>
  163. <include>**/*.properties</include>
  164. <include>**/*.xml</include>
  165. <include>**/*.store</include>
  166. </includes>
  167. <filtering>false</filtering>
  168. </resource>
  169. <resource>
  170. <directory>src/main/resources</directory>
  171. </resource>
  172. </resources>
  173. </build>
  174. <repositories>
  175. <repository>
  176. <id>spring-milestones</id>
  177. <name>Spring Milestones</name>
  178. <url>https://repo.spring.io/milestone</url>
  179. <snapshots>
  180. <enabled>false</enabled>
  181. </snapshots>
  182. </repository>
  183. </repositories>
  184. </project>