pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. <groupId>com.fdkankan.ucenter</groupId>
  7. <artifactId>4dkankan-center-ucenter</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.12.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.fdkankan</groupId>
  19. <artifactId>4dkankan-utils-model</artifactId>
  20. <version>3.0.0-SNAPSHOT</version>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.bytedeco</groupId>
  24. <artifactId>javacv</artifactId>
  25. </exclusion>
  26. <exclusion>
  27. <groupId>org.bytedeco</groupId>
  28. <artifactId>javacpp</artifactId>
  29. </exclusion>
  30. <exclusion>
  31. <groupId>org.bytedeco</groupId>
  32. <artifactId>javacv-platform</artifactId>
  33. </exclusion>
  34. <exclusion>
  35. <groupId>joinery</groupId>
  36. <artifactId>jave</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fdkankan</groupId>
  42. <artifactId>4dkankan-utils-fyun-parent</artifactId>
  43. <version>3.0.0-SNAPSHOT</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.bytedeco</groupId>
  47. <artifactId>javacv</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>org.bytedeco</groupId>
  51. <artifactId>javacpp</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>org.bytedeco</groupId>
  55. <artifactId>javacv-platform</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>joinery</groupId>
  59. <artifactId>jave</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fdkankan</groupId>
  65. <artifactId>4dkankan-utils-fyun-oss</artifactId>
  66. <version>3.0.0-SNAPSHOT</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fdkankan</groupId>
  70. <artifactId>4dkankan-utils-fyun-local</artifactId>
  71. <version>3.0.0-SNAPSHOT</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.fdkankan</groupId>
  75. <artifactId>4dkankan-utils-fyun-s3</artifactId>
  76. <version>3.0.0-SNAPSHOT</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.fdkankan</groupId>
  80. <artifactId>4dkankan-utils-redis</artifactId>
  81. <version>3.0.0-SNAPSHOT</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.fdkankan</groupId>
  85. <artifactId>4dkankan-utils-db</artifactId>
  86. <version>3.0.0-SNAPSHOT</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.fdkankan</groupId>
  90. <artifactId>4dkankan-utils-sms</artifactId>
  91. <version>5.0.0-SNAPSHOT</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.fdkankan</groupId>
  95. <artifactId>4dkankan-utils-image</artifactId>
  96. <version>3.0.0-SNAPSHOT</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.fdkankan</groupId>
  100. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  101. <version>3.0.0-SNAPSHOT</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.fdkankan</groupId>
  105. <artifactId>4dkankan-utils-sensitive-word</artifactId>
  106. <version>3.0.0-SNAPSHOT</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-web</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-aop</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba.cloud</groupId>
  118. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  119. <version>2.2.7.RELEASE</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.alibaba.cloud</groupId>
  123. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  124. <version>2.2.7.RELEASE</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.alibaba</groupId>
  128. <artifactId>fastjson</artifactId>
  129. <version>1.2.83</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-starter-validation</artifactId>
  134. </dependency>
  135. <!--htt请求工具-->
  136. <dependency>
  137. <groupId>com.dtflys.forest</groupId>
  138. <artifactId>forest-spring-boot-starter</artifactId>
  139. <version>1.5.24</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>easyexcel</artifactId>
  144. <version>3.1.0</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.projectlombok</groupId>
  148. <artifactId>lombok</artifactId>
  149. <version>1.18.20</version>
  150. </dependency>
  151. </dependencies>
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-maven-plugin</artifactId>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.apache.maven.plugins</groupId>
  160. <artifactId>maven-surefire-plugin</artifactId>
  161. <configuration>
  162. <testFailureIgnore>true</testFailureIgnore>
  163. </configuration>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.apache.maven.plugins</groupId>
  167. <artifactId>maven-compiler-plugin</artifactId>
  168. <configuration>
  169. <source>8</source>
  170. <target>8</target>
  171. </configuration>
  172. </plugin>
  173. </plugins>
  174. </build>
  175. </project>