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.

198 lines
7.2 KiB

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