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

147 lines
4.2 KiB

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-data-elasticsearch</artifactId>-->
  64. <!-- </dependency>-->
  65. <dependency>
  66. <groupId>com.github.pagehelper</groupId>
  67. <artifactId>pagehelper-spring-boot-starter</artifactId>
  68. <version>1.4.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-web</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mybatis.spring.boot</groupId>
  76. <artifactId>mybatis-spring-boot-starter</artifactId>
  77. <version>3.0.4</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>easyexcel</artifactId>
  82. <version>3.1.3</version>
  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>com.fasterxml.jackson.datatype</groupId>
  113. <artifactId>jackson-datatype-jsr310</artifactId>
  114. <version>2.17.3</version> <!-- 确保版本与您的jackson-databind版本兼容 -->
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. </plugin>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. <configuration>
  127. <excludes>
  128. <exclude>
  129. <groupId>org.projectlombok</groupId>
  130. <artifactId>lombok</artifactId>
  131. </exclude>
  132. </excludes>
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>