pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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-fusion</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.fdkankan</groupId>
  18. <artifactId>4dkankan-utils-redis</artifactId>
  19. <version>2.0.0-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>mysql</groupId>
  23. <artifactId>mysql-connector-java</artifactId>
  24. <version>8.0.25</version>
  25. <scope>runtime</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. <scope>compile</scope>
  31. <version>3.4.3.4</version>
  32. </dependency>
  33. <!--mybatis-plus代码生成器-->
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-generator</artifactId>
  37. <scope>compile</scope>
  38. <version>3.5.1</version>
  39. </dependency>
  40. <!--velocity模板-->
  41. <dependency>
  42. <groupId>org.apache.velocity</groupId>
  43. <artifactId>velocity-engine-core</artifactId>
  44. <version>2.3</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-aop</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.83</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-validation</artifactId>
  62. </dependency>
  63. <!--htt请求工具-->
  64. <dependency>
  65. <groupId>com.dtflys.forest</groupId>
  66. <artifactId>forest-spring-boot-starter</artifactId>
  67. <version>1.5.24</version>
  68. </dependency>
  69. <!-- 分布式日志追踪-->
  70. <dependency>
  71. <groupId>com.yomahub</groupId>
  72. <artifactId>tlog-web-spring-boot-starter</artifactId>
  73. <version>1.3.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba</groupId>
  77. <artifactId>easyexcel</artifactId>
  78. <version>3.1.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.projectlombok</groupId>
  82. <artifactId>lombok</artifactId>
  83. <version>1.18.20</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.aliyun.oss</groupId>
  87. <artifactId>aliyun-sdk-oss</artifactId>
  88. <version>2.8.3</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.jsonwebtoken</groupId>
  92. <artifactId>jjwt</artifactId>
  93. <version>0.9.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.auth0</groupId>
  97. <artifactId>java-jwt</artifactId>
  98. <version>3.10.3</version>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>