pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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-smart-site</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. <properties>
  16. <shiro.version>1.5.3</shiro.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.fdkankan</groupId>
  21. <artifactId>4dkankan-utils-redis</artifactId>
  22. <version>2.0.0-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fdkankan</groupId>
  26. <artifactId>4dkankan-utils-sms</artifactId>
  27. <version>3.0.0-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fdkankan</groupId>
  31. <artifactId>4dkankan-utils-sign</artifactId>
  32. <version>3.0.0-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.yulichang</groupId>
  36. <artifactId>mybatis-plus-join</artifactId>
  37. <version>1.4.5</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. <version>8.0.25</version>
  43. <scope>runtime</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-boot-starter</artifactId>
  48. <scope>compile</scope>
  49. <version>3.4.3.4</version>
  50. </dependency>
  51. <!--mybatis-plus代码生成器-->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-generator</artifactId>
  55. <scope>compile</scope>
  56. <version>3.5.1</version>
  57. </dependency>
  58. <!--velocity模板-->
  59. <dependency>
  60. <groupId>org.apache.velocity</groupId>
  61. <artifactId>velocity-engine-core</artifactId>
  62. <version>2.3</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-web</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-aop</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>fastjson</artifactId>
  75. <version>1.2.83</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-validation</artifactId>
  80. </dependency>
  81. <!--htt请求工具-->
  82. <dependency>
  83. <groupId>com.dtflys.forest</groupId>
  84. <artifactId>forest-spring-boot-starter</artifactId>
  85. <version>1.5.24</version>
  86. </dependency>
  87. <!-- 分布式日志追踪-->
  88. <dependency>
  89. <groupId>com.yomahub</groupId>
  90. <artifactId>tlog-web-spring-boot-starter</artifactId>
  91. <version>1.3.6</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.projectlombok</groupId>
  95. <artifactId>lombok</artifactId>
  96. <version>1.18.20</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.jsonwebtoken</groupId>
  100. <artifactId>jjwt</artifactId>
  101. <version>0.9.1</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.auth0</groupId>
  105. <artifactId>java-jwt</artifactId>
  106. <version>3.10.3</version>
  107. </dependency>
  108. <!--引入shrio-->
  109. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  110. <dependency>
  111. <groupId>cn.dev33</groupId>
  112. <artifactId>sa-token-spring-boot-starter</artifactId>
  113. <version>1.34.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>cn.dev33</groupId>
  117. <artifactId>sa-token-dao-redis-jackson</artifactId>
  118. <version>1.34.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.fdkankan</groupId>
  122. <artifactId>4dkankan-utils-filestorage</artifactId>
  123. <version>3.0.0-SNAPSHOT</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.github.ulisesbocchio</groupId>
  127. <artifactId>jasypt-spring-boot-starter</artifactId>
  128. <version>3.0.5</version>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>