pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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.sr</groupId>
  6. <artifactId>kpim</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>kpim</name>
  10. <description>kpim</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.1.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.cloud</groupId>
  26. <artifactId>spring-cloud-commons</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-actuator</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-redis</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  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-openfeign</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>1.3.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <scope>runtime</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid</artifactId>
  66. <version>1.1.9</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>fastjson</artifactId>
  71. <version>1.2.12</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.auth0</groupId>
  75. <artifactId>java-jwt</artifactId>
  76. <version>3.1.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.jsonwebtoken</groupId>
  80. <artifactId>jjwt</artifactId>
  81. <version>0.6.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.pagehelper</groupId>
  85. <artifactId>pagehelper-spring-boot-starter</artifactId>
  86. <version>1.2.5</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.springfox</groupId>
  90. <artifactId>springfox-swagger2</artifactId>
  91. <version>2.7.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.springfox</groupId>
  95. <artifactId>springfox-swagger-ui</artifactId>
  96. <version>2.7.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi</artifactId>
  101. <version>3.9</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.poi</groupId>
  105. <artifactId>poi-ooxml-schemas</artifactId>
  106. <version>3.9</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.poi</groupId>
  110. <artifactId>poi-ooxml</artifactId>
  111. <version>3.9</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-io</groupId>
  115. <artifactId>commons-io</artifactId>
  116. <version>2.6</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.jcraft</groupId>
  120. <artifactId>jsch</artifactId>
  121. <version>0.1.54</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.bouncycastle</groupId>
  125. <artifactId>bcprov-jdk16</artifactId>
  126. <version>1.46</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.projectlombok</groupId>
  130. <artifactId>lombok</artifactId>
  131. <version>1.18.4</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-configuration-processor</artifactId>
  136. <optional>true</optional>
  137. </dependency>
  138. </dependencies>
  139. <dependencyManagement>
  140. <dependencies>
  141. <dependency>
  142. <groupId>org.springframework.cloud</groupId>
  143. <artifactId>spring-cloud-dependencies</artifactId>
  144. <version>${spring-cloud.version}</version>
  145. <type>pom</type>
  146. <scope>import</scope>
  147. </dependency>
  148. </dependencies>
  149. </dependencyManagement>
  150. <build>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-surefire-plugin</artifactId>
  159. <configuration>
  160. <testFailureIgnore>true</testFailureIgnore>
  161. </configuration>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. <repositories>
  166. <repository>
  167. <id>spring-milestones</id>
  168. <name>Spring Milestones</name>
  169. <url>https://repo.spring.io/milestone</url>
  170. <snapshots>
  171. <enabled>false</enabled>
  172. </snapshots>
  173. </repository>
  174. </repositories>
  175. </project>