pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. <groupId>com.zhentao</groupId>
  6. <artifactId>Xiaoe-Tech</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Xiaoe-Tech</name>
  9. <description>Xiaoe-Tech</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.apache.httpcomponents</groupId>
  19. <artifactId>httpclient</artifactId>
  20. <version>4.5.13</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.httpcomponents</groupId>
  24. <artifactId>httpcore</artifactId>
  25. <version>4.4.14</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>commons-lang</groupId>
  29. <artifactId>commons-lang</artifactId>
  30. <version>2.6</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.hutool</groupId>
  34. <artifactId>hutool-all</artifactId>
  35. <version>5.8.11</version> <!-- 确保版本号是正确的 -->
  36. </dependency>
  37. <dependency>
  38. <groupId>io.jsonwebtoken</groupId>
  39. <artifactId>jjwt</artifactId>
  40. <version>0.9.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hibernate.validator</groupId>
  44. <artifactId>hibernate-validator</artifactId>
  45. <version>6.2.0.Final</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.redisson</groupId>
  49. <artifactId>redisson</artifactId>
  50. <version>3.12.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-web</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.fasterxml.jackson.core</groupId>
  58. <artifactId>jackson-databind</artifactId>
  59. <version>2.13.3</version> <!-- 可以根据需要选择合适的版本 -->
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-data-redis</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-boot-starter</artifactId>
  68. <version>3.5.4</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>mysql</groupId>
  72. <artifactId>mysql-connector-java</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax.servlet</groupId>
  76. <artifactId>javax.servlet-api</artifactId>
  77. <version>4.0.1</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <!-- Spring Security -->
  81. <!-- <dependency>-->
  82. <!-- <groupId>org.springframework.boot</groupId>-->
  83. <!-- <artifactId>spring-boot-starter-security</artifactId>-->
  84. <!-- </dependency>-->
  85. <!-- FastJSON -->
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>fastjson</artifactId>
  89. <version>2.0.29</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-test</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.projectlombok</groupId>
  102. <artifactId>lombok</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.vaadin.external.google</groupId>
  106. <artifactId>android-json</artifactId>
  107. <version>0.0.20131108.vaadin1</version>
  108. <scope>compile</scope>
  109. </dependency>
  110. </dependencies>
  111. <dependencyManagement>
  112. <dependencies>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-dependencies</artifactId>
  116. <version>${spring-boot.version}</version>
  117. <type>pom</type>
  118. <scope>import</scope>
  119. </dependency>
  120. </dependencies>
  121. </dependencyManagement>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-compiler-plugin</artifactId>
  127. <version>3.8.1</version>
  128. <configuration>
  129. <source>1.8</source>
  130. <target>1.8</target>
  131. <encoding>UTF-8</encoding>
  132. </configuration>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <version>${spring-boot.version}</version>
  138. <configuration>
  139. <mainClass>com.zhentao.XiaoeTechApplication</mainClass>
  140. <skip>true</skip>
  141. </configuration>
  142. <executions>
  143. <execution>
  144. <id>repackage</id>
  145. <goals>
  146. <goal>repackage</goal>
  147. </goals>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. </project>