pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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.futu.course</groupId>
  6. <artifactId>goose</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>goose</name>
  9. <description>goose</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.7.6</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.apache.httpcomponents</groupId>
  19. <artifactId>httpclient</artifactId>
  20. <version>4.5.3</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.hutool</groupId>
  24. <artifactId>hutool-all</artifactId>
  25. <version>5.8.16</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>fastjson</artifactId>
  30. <version>1.2.80</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.jsonwebtoken</groupId>
  34. <artifactId>jjwt-api</artifactId>
  35. <version>0.11.5</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.jsonwebtoken</groupId>
  39. <artifactId>jjwt-impl</artifactId>
  40. <version>0.11.5</version>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.jsonwebtoken</groupId>
  45. <artifactId>jjwt-jackson</artifactId>
  46. <version>0.11.5</version>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>commons-io</groupId>
  51. <artifactId>commons-io</artifactId>
  52. <version>2.11.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>javax.validation</groupId>
  56. <artifactId>validation-api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. <version>3.3.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-httpclient</groupId>
  65. <artifactId>commons-httpclient</artifactId>
  66. <version>3.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-data-redis</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.mybatis.spring.boot</groupId>
  78. <artifactId>mybatis-spring-boot-starter</artifactId>
  79. <version>2.3.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.baomidou</groupId>
  83. <artifactId>mybatis-plus-boot-starter</artifactId>
  84. <version>3.5.4</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>cn.hutool</groupId>
  88. <artifactId>hutool-all</artifactId>
  89. <version>5.8.16</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.mysql</groupId>
  93. <artifactId>mysql-connector-j</artifactId>
  94. <scope>runtime</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.projectlombok</groupId>
  98. <artifactId>lombok</artifactId>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-test</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <!-- es依赖 -->
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.elasticsearch.client</groupId>
  113. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  114. <version>7.17.3</version> <!-- 此版本需与 Spring Boot 2.7.6 兼容 -->
  115. </dependency>
  116. <dependency>
  117. <groupId>org.elasticsearch.client</groupId>
  118. <artifactId>elasticsearch-rest-client</artifactId>
  119. <version>7.17.3</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.elasticsearch</groupId>
  123. <artifactId>elasticsearch</artifactId>
  124. <version>7.17.3</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-autoconfigure</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>io.minio</groupId>
  136. <artifactId>minio</artifactId>
  137. <version>7.1.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-starter</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-configuration-processor</artifactId>
  146. <optional>true</optional>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-actuator</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-web</artifactId>
  155. </dependency>
  156. </dependencies>
  157. <dependencyManagement>
  158. <dependencies>
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-dependencies</artifactId>
  162. <version>${spring-boot.version}</version>
  163. <type>pom</type>
  164. <scope>import</scope>
  165. </dependency>
  166. </dependencies>
  167. </dependencyManagement>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.apache.maven.plugins</groupId>
  172. <artifactId>maven-compiler-plugin</artifactId>
  173. <version>3.8.1</version>
  174. <configuration>
  175. <source>1.8</source>
  176. <target>1.8</target>
  177. <encoding>UTF-8</encoding>
  178. </configuration>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.springframework.boot</groupId>
  182. <artifactId>spring-boot-maven-plugin</artifactId>
  183. <version>${spring-boot.version}</version>
  184. <configuration>
  185. <mainClass>com.futu.course.GooseApplication</mainClass>
  186. <skip>true</skip>
  187. </configuration>
  188. <executions>
  189. <execution>
  190. <id>repackage</id>
  191. <goals>
  192. <goal>repackage</goal>
  193. </goals>
  194. </execution>
  195. </executions>
  196. </plugin>
  197. </plugins>
  198. </build>
  199. </project>