pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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</groupId>
  7. <artifactId>4dkankan-takelook</artifactId>
  8. <version>1.0.0</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.3.12.RELEASE</version>
  13. <relativePath/>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  19. <version>2.2.7.RELEASE</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  24. <version>2.2.7.RELEASE</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.fdkankan</groupId>
  28. <artifactId>4dkankan-utils-fyun-parent</artifactId>
  29. <version>3.0.0-SNAPSHOT</version>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>org.bytedeco</groupId>
  33. <artifactId>javacv</artifactId>
  34. </exclusion>
  35. <exclusion>
  36. <groupId>org.bytedeco</groupId>
  37. <artifactId>javacpp</artifactId>
  38. </exclusion>
  39. <exclusion>
  40. <groupId>org.bytedeco</groupId>
  41. <artifactId>javacv-platform</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>joinery</groupId>
  45. <artifactId>jave</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.fdkankan</groupId>
  51. <artifactId>4dkankan-utils-fyun-oss</artifactId>
  52. <version>3.0.0-SNAPSHOT</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.fdkankan</groupId>
  56. <artifactId>4dkankan-utils-fyun-s3</artifactId>
  57. <version>3.0.0-SNAPSHOT</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.fdkankan</groupId>
  61. <artifactId>4dkankan-utils-fyun-local</artifactId>
  62. <version>3.0.0-SNAPSHOT</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.fdkankan</groupId>
  66. <artifactId>4dkankan-utils-fyun-obs</artifactId>
  67. <version>3.0.0-SNAPSHOT</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.fdkankan</groupId>
  71. <artifactId>4dkankan-utils-redis</artifactId>
  72. <version>2.0.0-SNAPSHOT</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>mysql</groupId>
  76. <artifactId>mysql-connector-java</artifactId>
  77. <version>8.0.25</version>
  78. <scope>runtime</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <scope>compile</scope>
  84. <version>3.4.3.4</version>
  85. </dependency>
  86. <!--mybatis-plus代码生成器-->
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>mybatis-plus-generator</artifactId>
  90. <scope>compile</scope>
  91. <version>3.5.1</version>
  92. </dependency>
  93. <!--velocity模板-->
  94. <dependency>
  95. <groupId>org.apache.velocity</groupId>
  96. <artifactId>velocity-engine-core</artifactId>
  97. <version>2.3</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-web</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-aop</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <version>1.2.83</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-validation</artifactId>
  115. </dependency>
  116. <!--htt请求工具-->
  117. <dependency>
  118. <groupId>com.dtflys.forest</groupId>
  119. <artifactId>forest-spring-boot-starter</artifactId>
  120. <version>1.5.24</version>
  121. </dependency>
  122. <!-- 分布式日志追踪-->
  123. <dependency>
  124. <groupId>com.yomahub</groupId>
  125. <artifactId>tlog-web-spring-boot-starter</artifactId>
  126. <version>1.3.6</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.projectlombok</groupId>
  130. <artifactId>lombok</artifactId>
  131. <version>1.18.20</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>io.jsonwebtoken</groupId>
  135. <artifactId>jjwt</artifactId>
  136. <version>0.9.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.auth0</groupId>
  140. <artifactId>java-jwt</artifactId>
  141. <version>3.10.3</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.github.tencentyun</groupId>
  145. <artifactId>tls-sig-api-v2</artifactId>
  146. <version>2.0</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.alibaba</groupId>
  150. <artifactId>easyexcel</artifactId>
  151. <version>3.1.0</version>
  152. </dependency>
  153. </dependencies>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </project>