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