You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

193 lines
7.0 KiB

4 days ago
4 days ago
2 days ago
4 days ago
4 days ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.3.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>demo</name>
  15. <description>demo</description>
  16. <url/>
  17. <licenses>
  18. <license/>
  19. </licenses>
  20. <developers>
  21. <developer/>
  22. </developers>
  23. <scm>
  24. <connection/>
  25. <developerConnection/>
  26. <tag/>
  27. <url/>
  28. </scm>
  29. <properties>
  30. <java.version>21</java.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>fastjson</artifactId>
  36. <version>1.2.83</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.commons</groupId>
  40. <artifactId>commons-lang3</artifactId>
  41. <version>3.12.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpclient</artifactId>
  46. <version>4.5.14</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.hutool</groupId>
  50. <artifactId>hutool-all</artifactId>
  51. <version>5.8.24</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-web</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-aop</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-validation</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>3.0.4</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>easyexcel</artifactId>
  73. <version>3.1.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.fasterxml.jackson.core</groupId>
  77. <artifactId>jackson-databind</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-devtools</artifactId>
  82. <scope>runtime</scope>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.mysql</groupId>
  87. <artifactId>mysql-connector-j</artifactId>
  88. <scope>runtime</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.projectlombok</groupId>
  92. <artifactId>lombok</artifactId>
  93. <optional>true</optional>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-test</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.mybatis.spring.boot</groupId>
  102. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  103. <version>3.0.4</version>
  104. <scope>test</scope>
  105. </dependency>
  106. <!-- <dependency>-->
  107. <!-- <groupId>io.jsonwebtoken</groupId>-->
  108. <!-- <artifactId>jjwt-api</artifactId>-->
  109. <!-- <version>0.11.5</version>-->
  110. <!-- </dependency>-->
  111. <!-- <dependency>-->
  112. <!-- <groupId>io.jsonwebtoken</groupId>-->
  113. <!-- <artifactId>jjwt-impl</artifactId>-->
  114. <!-- <version>0.11.5</version>-->
  115. <!-- <scope>runtime</scope>-->
  116. <!-- </dependency>-->
  117. <!-- <dependency>-->
  118. <!-- <groupId>io.jsonwebtoken</groupId>-->
  119. <!-- <artifactId>jjwt-jackson</artifactId> &lt;!&ndash; 或 jjwt-gson &ndash;&gt;-->
  120. <!-- <version>0.11.5</version>-->
  121. <!-- <scope>runtime</scope>-->
  122. <!-- </dependency>-->
  123. <dependency>
  124. <groupId>io.jsonwebtoken</groupId>
  125. <artifactId>jjwt</artifactId>
  126. <version>0.9.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-webflux</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-security</artifactId>
  135. <version>3.3.6</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-starter-data-redis</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.github.pagehelper</groupId>
  143. <artifactId>pagehelper-spring-boot-starter</artifactId>
  144. <version>1.4.6</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>jakarta.validation</groupId>
  148. <artifactId>jakarta.validation-api</artifactId>
  149. <version>3.0.2</version> <!-- Jakarta Validation规范版本 -->
  150. </dependency>
  151. <dependency>
  152. <groupId>org.hibernate.validator</groupId>
  153. <artifactId>hibernate-validator</artifactId>
  154. <version>8.0.0.Final</version> <!-- 对应Spring Boot 3的实现版本 -->
  155. </dependency>
  156. <dependency>
  157. <groupId>javax.xml.bind</groupId>
  158. <artifactId>jaxb-api</artifactId>
  159. <version>2.3.1</version>
  160. </dependency>
  161. </dependencies>
  162. <build>
  163. <plugins>
  164. <plugin>
  165. <groupId>org.apache.maven.plugins</groupId>
  166. <artifactId>maven-compiler-plugin</artifactId>
  167. <configuration>
  168. <annotationProcessorPaths>
  169. <path>
  170. <groupId>org.projectlombok</groupId>
  171. <artifactId>lombok</artifactId>
  172. </path>
  173. </annotationProcessorPaths>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-maven-plugin</artifactId>
  179. <configuration>
  180. <excludes>
  181. <exclude>
  182. <groupId>org.projectlombok</groupId>
  183. <artifactId>lombok</artifactId>
  184. </exclude>
  185. </excludes>
  186. </configuration>
  187. </plugin>
  188. </plugins>
  189. </build>
  190. </project>