pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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-fyun-oss</artifactId>
  20. <version>3.0.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fdkankan</groupId>
  24. <artifactId>4dkankan-utils-fyun-s3</artifactId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fdkankan</groupId>
  29. <artifactId>4dkankan-utils-redis</artifactId>
  30. <version>2.0.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. <version>8.0.25</version>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <scope>compile</scope>
  42. <version>3.4.3.4</version>
  43. </dependency>
  44. <!--mybatis-plus代码生成器-->
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-generator</artifactId>
  48. <scope>compile</scope>
  49. <version>3.5.1</version>
  50. </dependency>
  51. <!--velocity模板-->
  52. <dependency>
  53. <groupId>org.apache.velocity</groupId>
  54. <artifactId>velocity-engine-core</artifactId>
  55. <version>2.3</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fdkankan</groupId>
  59. <artifactId>4dkankan-utils-sms</artifactId>
  60. <version>3.0.0-SNAPSHOT</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.fdkankan</groupId>
  64. <artifactId>4dkankan-utils-model</artifactId>
  65. <version>3.0.0-SNAPSHOT</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.fdkankan</groupId>
  69. <artifactId>4dkankan-utils-image</artifactId>
  70. <version>3.0.0-SNAPSHOT</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.fdkankan</groupId>
  74. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  75. <version>3.0.0-SNAPSHOT</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.fdkankan</groupId>
  79. <artifactId>4dkankan-utils-sensitive-word</artifactId>
  80. <version>3.0.0-SNAPSHOT</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-web</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-aop</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba.cloud</groupId>
  92. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  93. <version>2.2.7.RELEASE</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alibaba.cloud</groupId>
  97. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  98. <version>2.2.7.RELEASE</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>1.2.83</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-validation</artifactId>
  108. </dependency>
  109. <!--htt请求工具-->
  110. <dependency>
  111. <groupId>com.dtflys.forest</groupId>
  112. <artifactId>forest-spring-boot-starter</artifactId>
  113. <version>1.5.24</version>
  114. </dependency>
  115. <!-- 分布式日志追踪-->
  116. <dependency>
  117. <groupId>com.yomahub</groupId>
  118. <artifactId>tlog-web-spring-boot-starter</artifactId>
  119. <version>1.3.6</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.alibaba</groupId>
  123. <artifactId>easyexcel</artifactId>
  124. <version>3.1.0</version>
  125. </dependency>
  126. <!-- Alipay -->
  127. <dependency>
  128. <groupId>com.alipay</groupId>
  129. <artifactId>alipay-sdk-java</artifactId>
  130. <version>20170324180803</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.alipay</groupId>
  134. <artifactId>alipay-trade-sdk</artifactId>
  135. <version>20161215</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.paypal.sdk</groupId>
  139. <artifactId>rest-api-sdk</artifactId>
  140. <version>1.14.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.projectlombok</groupId>
  144. <artifactId>lombok</artifactId>
  145. <version>1.18.20</version>
  146. </dependency>
  147. </dependencies>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-surefire-plugin</artifactId>
  157. <configuration>
  158. <testFailureIgnore>true</testFailureIgnore>
  159. </configuration>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-compiler-plugin</artifactId>
  164. <configuration>
  165. <source>8</source>
  166. <target>8</target>
  167. </configuration>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. </project>