金币系统后端
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.

185 lines
5.1 KiB

3 weeks ago
4 months ago
4 months ago
4 months ago
5 months ago
3 weeks 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.2-SNAPSHOT</version>
  14. <!-- <version>0.0.3-SNAPSHOT</version>-->
  15. <name>demo</name>
  16. <description>demo</description>
  17. <properties>
  18. <java.version>21</java.version>
  19. </properties>
  20. <dependencies>
  21. <!-- Maven -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.zaxxer</groupId>
  28. <artifactId>HikariCP</artifactId>
  29. <version>5.1.0</version>
  30. </dependency>
  31. <!-- <dependency>-->
  32. <!-- <groupId>org.springframework.kafka</groupId>-->
  33. <!-- <artifactId>spring-kafka</artifactId>-->
  34. <!-- </dependency>-->
  35. <!-- <dependency>-->
  36. <!-- <groupId>com.101tec</groupId>-->
  37. <!-- <artifactId>zkclient</artifactId>-->
  38. <!-- <version>0.11</version>-->
  39. <!-- </dependency>-->
  40. <dependency>
  41. <groupId>io.jsonwebtoken</groupId>
  42. <artifactId>jjwt</artifactId>
  43. <version>0.9.1</version>
  44. </dependency>
  45. <!-- 多数据源 -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid</artifactId>
  49. <version>1.2.9</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>mysql</groupId>
  53. <artifactId>mysql-connector-java</artifactId>
  54. <version>8.0.33</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>javax.xml.bind</groupId>
  58. <artifactId>jaxb-api</artifactId>
  59. <version>2.3.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-security</artifactId>
  64. <version>3.3.6</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-data-redis</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-cache</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-pool2</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-webflux</artifactId>
  81. </dependency>
  82. <!-- <dependency>-->
  83. <!-- <groupId>org.springframework.boot</groupId>-->
  84. <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
  85. <!-- </dependency>-->
  86. <dependency>
  87. <groupId>com.github.pagehelper</groupId>
  88. <artifactId>pagehelper-spring-boot-starter</artifactId>
  89. <version>1.4.6</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-web</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.mybatis.spring.boot</groupId>
  97. <artifactId>mybatis-spring-boot-starter</artifactId>
  98. <version>3.0.4</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>easyexcel</artifactId>
  103. <version>3.1.3</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.mybatis</groupId>
  107. <artifactId>mybatis</artifactId>
  108. <version>3.5.13</version> <!-- 确保是最新稳定版本 -->
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-devtools</artifactId>
  113. <scope>runtime</scope>
  114. <optional>true</optional>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.mysql</groupId>
  118. <artifactId>mysql-connector-j</artifactId>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.projectlombok</groupId>
  123. <artifactId>lombok</artifactId>
  124. <optional>true</optional>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-test</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.mybatis.spring.boot</groupId>
  133. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  134. <version>3.0.4</version>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.fasterxml.jackson.datatype</groupId>
  139. <artifactId>jackson-datatype-jsr310</artifactId>
  140. <version>2.17.3</version> <!-- 确保版本与您的jackson-databind版本兼容 -->
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-compiler-plugin</artifactId>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-maven-plugin</artifactId>
  152. <configuration>
  153. <excludes>
  154. <exclude>
  155. <groupId>org.projectlombok</groupId>
  156. <artifactId>lombok</artifactId>
  157. </exclude>
  158. </excludes>
  159. </configuration>
  160. </plugin>
  161. </plugins>
  162. <!--<resources>
  163. <resource>
  164. <directory>src/main/resources</directory>
  165. <includes>
  166. <include>**/*.xml</include>
  167. </includes>
  168. </resource>
  169. </resources>-->
  170. </build>
  171. </project>