pom.xml 7.7 KB

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