pom.xml 4.9 KB

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