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.

189 lines
6.8 KiB

4 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-validation</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mybatis.spring.boot</groupId>
  63. <artifactId>mybatis-spring-boot-starter</artifactId>
  64. <version>3.0.4</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>easyexcel</artifactId>
  69. <version>3.1.3</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.core</groupId>
  73. <artifactId>jackson-databind</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-devtools</artifactId>
  78. <scope>runtime</scope>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.mysql</groupId>
  83. <artifactId>mysql-connector-j</artifactId>
  84. <scope>runtime</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok</artifactId>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.mybatis.spring.boot</groupId>
  98. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  99. <version>3.0.4</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <!-- <dependency>-->
  103. <!-- <groupId>io.jsonwebtoken</groupId>-->
  104. <!-- <artifactId>jjwt-api</artifactId>-->
  105. <!-- <version>0.11.5</version>-->
  106. <!-- </dependency>-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>io.jsonwebtoken</groupId>-->
  109. <!-- <artifactId>jjwt-impl</artifactId>-->
  110. <!-- <version>0.11.5</version>-->
  111. <!-- <scope>runtime</scope>-->
  112. <!-- </dependency>-->
  113. <!-- <dependency>-->
  114. <!-- <groupId>io.jsonwebtoken</groupId>-->
  115. <!-- <artifactId>jjwt-jackson</artifactId> &lt;!&ndash; 或 jjwt-gson &ndash;&gt;-->
  116. <!-- <version>0.11.5</version>-->
  117. <!-- <scope>runtime</scope>-->
  118. <!-- </dependency>-->
  119. <dependency>
  120. <groupId>io.jsonwebtoken</groupId>
  121. <artifactId>jjwt</artifactId>
  122. <version>0.9.1</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-webflux</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-security</artifactId>
  131. <version>3.3.6</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-data-redis</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.github.pagehelper</groupId>
  139. <artifactId>pagehelper-spring-boot-starter</artifactId>
  140. <version>1.4.6</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>jakarta.validation</groupId>
  144. <artifactId>jakarta.validation-api</artifactId>
  145. <version>3.0.2</version> <!-- Jakarta Validation规范版本 -->
  146. </dependency>
  147. <dependency>
  148. <groupId>org.hibernate.validator</groupId>
  149. <artifactId>hibernate-validator</artifactId>
  150. <version>8.0.0.Final</version> <!-- 对应Spring Boot 3的实现版本 -->
  151. </dependency>
  152. <dependency>
  153. <groupId>javax.xml.bind</groupId>
  154. <artifactId>jaxb-api</artifactId>
  155. <version>2.3.1</version>
  156. </dependency>
  157. </dependencies>
  158. <build>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-compiler-plugin</artifactId>
  163. <configuration>
  164. <annotationProcessorPaths>
  165. <path>
  166. <groupId>org.projectlombok</groupId>
  167. <artifactId>lombok</artifactId>
  168. </path>
  169. </annotationProcessorPaths>
  170. </configuration>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.springframework.boot</groupId>
  174. <artifactId>spring-boot-maven-plugin</artifactId>
  175. <configuration>
  176. <excludes>
  177. <exclude>
  178. <groupId>org.projectlombok</groupId>
  179. <artifactId>lombok</artifactId>
  180. </exclude>
  181. </excludes>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. </project>