pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <artifactId>4dkankan-parent</artifactId>
  9. <groupId>com.fdkankan</groupId>
  10. <version>2.0.0</version>
  11. </parent>
  12. <artifactId>4dkankan-center-platform</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. </dependencies>
  114. <distributionManagement>
  115. <repository>
  116. <!-- 这里的ID要和setting的id一致 -->
  117. <id>releases</id>
  118. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  119. </repository>
  120. <!--这是打成快照版本的配置 -->
  121. <snapshotRepository>
  122. <id>snapshots</id>
  123. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  124. </snapshotRepository>
  125. </distributionManagement>
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. </plugin>
  132. <!-- maven 打包时跳过测试 -->
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-surefire-plugin</artifactId>
  136. <configuration>
  137. <skip>true</skip>
  138. </configuration>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>