pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <packaging>jar</packaging>
  6. <parent>
  7. <artifactId>4dkankan-parent</artifactId>
  8. <groupId>com.fdkankan</groupId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>4dkankan-pom</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.hutool</groupId>
  16. <artifactId>hutool-all</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba.cloud</groupId>
  20. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  21. <version>2.1.0.RELEASE</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-openfeign</artifactId>
  26. <version>2.2.10.RELEASE</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-data-redis</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. <version>1.3.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <scope>runtime</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>org.junit.vintage</groupId>
  53. <artifactId>junit-vintage-engine</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. <version>1.2.58</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.httpcomponents</groupId>
  69. <artifactId>httpclient</artifactId>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>druid</artifactId>
  75. <version>1.1.17</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.springfox</groupId>
  79. <artifactId>springfox-swagger2</artifactId>
  80. <version>2.9.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-swagger-ui</artifactId>
  85. <version>2.9.2</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.plugin</groupId>
  89. <artifactId>spring-plugin-core</artifactId>
  90. <version>1.2.0.RELEASE</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.plugin</groupId>
  94. <artifactId>spring-plugin-metadata</artifactId>
  95. <version>1.2.0.RELEASE</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.xiaoymin</groupId>
  99. <artifactId>swagger-bootstrap-ui</artifactId>
  100. <version>1.9.4</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-aop</artifactId>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  107. <dependency>
  108. <groupId>org.projectlombok</groupId>
  109. <artifactId>lombok</artifactId>
  110. <version>1.18.12</version>
  111. <scope>provided</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.auth0</groupId>
  115. <artifactId>java-jwt</artifactId>
  116. <version>3.10.3</version>
  117. </dependency>
  118. </dependencies>
  119. <distributionManagement>
  120. <repository>
  121. <!-- 这里的ID要和setting的id一致 -->
  122. <id>releases</id>
  123. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  124. </repository>
  125. <!--这是打成快照版本的配置 -->
  126. <snapshotRepository>
  127. <id>snapshots</id>
  128. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  129. </snapshotRepository>
  130. </distributionManagement>
  131. <build>
  132. <plugins>
  133. <!-- <plugin>-->
  134. <!-- <groupId>org.springframework.boot</groupId>-->
  135. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  136. <!-- </plugin>-->
  137. <!-- &lt;!&ndash; maven 打包时跳过测试 &ndash;&gt;-->
  138. <!-- <plugin>-->
  139. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  140. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  141. <!-- <configuration>-->
  142. <!-- <skip>true</skip>-->
  143. <!-- </configuration>-->
  144. <!-- </plugin>-->
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-compiler-plugin</artifactId>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. </project>