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

153 lines
4.3 KiB

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