pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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-oss</artifactId>
  29. <version>3.0.0-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fdkankan</groupId>
  33. <artifactId>4dkankan-utils-fyun-s3</artifactId>
  34. <version>3.0.0-SNAPSHOT</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.fdkankan</groupId>
  38. <artifactId>4dkankan-utils-redis</artifactId>
  39. <version>2.0.0-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <version>8.0.25</version>
  45. <scope>runtime</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <scope>compile</scope>
  51. <version>3.4.3.4</version>
  52. </dependency>
  53. <!--mybatis-plus代码生成器-->
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-generator</artifactId>
  57. <scope>compile</scope>
  58. <version>3.5.1</version>
  59. </dependency>
  60. <!--velocity模板-->
  61. <dependency>
  62. <groupId>org.apache.velocity</groupId>
  63. <artifactId>velocity-engine-core</artifactId>
  64. <version>2.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-web</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-aop</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. <version>1.2.83</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-validation</artifactId>
  82. </dependency>
  83. <!--htt请求工具-->
  84. <dependency>
  85. <groupId>com.dtflys.forest</groupId>
  86. <artifactId>forest-spring-boot-starter</artifactId>
  87. <version>1.5.24</version>
  88. </dependency>
  89. <!-- 分布式日志追踪-->
  90. <dependency>
  91. <groupId>com.yomahub</groupId>
  92. <artifactId>tlog-web-spring-boot-starter</artifactId>
  93. <version>1.3.6</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.projectlombok</groupId>
  97. <artifactId>lombok</artifactId>
  98. <version>1.18.20</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.jsonwebtoken</groupId>
  102. <artifactId>jjwt</artifactId>
  103. <version>0.9.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.auth0</groupId>
  107. <artifactId>java-jwt</artifactId>
  108. <version>3.10.3</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.github.tencentyun</groupId>
  112. <artifactId>tls-sig-api-v2</artifactId>
  113. <version>2.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.alibaba</groupId>
  117. <artifactId>easyexcel</artifactId>
  118. <version>3.1.0</version>
  119. </dependency>
  120. </dependencies>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>