pom.xml 7.2 KB

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