pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. <groupId>com.fdkankan</groupId>
  8. <artifactId>4dkankan-parent</artifactId>
  9. <version>2.0.0-SNAPSHOT</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.fdkankan</groupId>
  13. <artifactId>4dkankan-common</artifactId>
  14. <!-- <repositories>-->
  15. <!-- <repository>-->
  16. <!-- <id>releases</id>-->
  17. <!-- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>-->
  18. <!-- </repository>-->
  19. <!-- <repository>-->
  20. <!-- <id>nexus-aliyun</id>-->
  21. <!-- <url>http://maven.aliyun.com/nexus/content/groups/public</url>-->
  22. <!-- </repository>-->
  23. <!-- </repositories>-->
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.fdkankan</groupId>
  27. <artifactId>4dkankan-common-utils</artifactId>
  28. <version>2.0.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.hutool</groupId>
  36. <artifactId>hutool-all</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>servlet-api</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-webflux</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.shiro</groupId>
  53. <artifactId>shiro-spring</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>net.coobird</groupId>
  57. <artifactId>thumbnailator</artifactId>
  58. <version>0.4.8</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.google.code.gson</groupId>
  62. <artifactId>gson</artifactId>
  63. <version>2.8.5</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.fdkankan</groupId>
  67. <artifactId>4dkankan-utils-redis</artifactId>
  68. <version>2.0.0-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba.cloud</groupId>
  72. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba.cloud</groupId>
  76. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.cloud</groupId>
  80. <artifactId>spring-cloud-starter-openfeign</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-web</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi</artifactId>
  89. <version>3.8</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.poi</groupId>
  93. <artifactId>poi-ooxml</artifactId>
  94. <version>3.8</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-test</artifactId>
  99. <scope>test</scope>
  100. <exclusions>
  101. <exclusion>
  102. <groupId>org.junit.vintage</groupId>
  103. <artifactId>junit-vintage-engine</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.httpcomponents</groupId>
  113. <artifactId>httpclient</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework.plugin</groupId>
  117. <artifactId>spring-plugin-core</artifactId>
  118. <version>1.2.0.RELEASE</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.plugin</groupId>
  122. <artifactId>spring-plugin-metadata</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-aop</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.alibaba.cloud</groupId>
  130. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.baomidou</groupId>
  134. <artifactId>mybatis-plus-extension</artifactId>
  135. <version>3.4.3.4</version>
  136. </dependency>
  137. </dependencies>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-compiler-plugin</artifactId>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <!-- <distributionManagement>-->
  147. <!-- <repository>-->
  148. <!-- &lt;!&ndash; 这里的ID要和setting的id一致 &ndash;&gt;-->
  149. <!-- <id>releases</id>-->
  150. <!-- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>-->
  151. <!-- </repository>-->
  152. <!-- &lt;!&ndash;这是打成快照版本的配置 &ndash;&gt;-->
  153. <!-- <snapshotRepository>-->
  154. <!-- <id>snapshots</id>-->
  155. <!-- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>-->
  156. <!-- </snapshotRepository>-->
  157. <!-- </distributionManagement>-->
  158. </project>