pom.xml 7.1 KB

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