pom.xml 7.7 KB

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