pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-openfeign</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>org.junit.vintage</groupId>
  50. <artifactId>junit-vintage-engine</artifactId>
  51. </exclusion>
  52. <exclusion>
  53. <groupId>junit</groupId>
  54. <artifactId>junit</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpclient</artifactId>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>druid</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.plugin</groupId>
  74. <artifactId>spring-plugin-core</artifactId>
  75. <version>1.2.0.RELEASE</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.plugin</groupId>
  79. <artifactId>spring-plugin-metadata</artifactId>
  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>com.github.xiaoymin</groupId>-->
  93. <!-- <artifactId>swagger-bootstrap-ui</artifactId>-->
  94. <!-- <version>1.9.4</version>-->
  95. <!-- </dependency>-->
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-aop</artifactId>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  101. <dependency>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.auth0</groupId>
  108. <artifactId>java-jwt</artifactId>
  109. </dependency>
  110. </dependencies>
  111. <distributionManagement>
  112. <repository>
  113. <!-- 这里的ID要和setting的id一致 -->
  114. <id>releases</id>
  115. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  116. </repository>
  117. <!--这是打成快照版本的配置 -->
  118. <snapshotRepository>
  119. <id>snapshots</id>
  120. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  121. </snapshotRepository>
  122. </distributionManagement>
  123. <build>
  124. <plugins>
  125. <!-- <plugin>-->
  126. <!-- <groupId>org.springframework.boot</groupId>-->
  127. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  128. <!-- </plugin>-->
  129. <!-- &lt;!&ndash; maven 打包时跳过测试 &ndash;&gt;-->
  130. <!-- <plugin>-->
  131. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  132. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  133. <!-- <configuration>-->
  134. <!-- <skip>true</skip>-->
  135. <!-- </configuration>-->
  136. <!-- </plugin>-->
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>