pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. </dependencies>
  107. <dependencyManagement>
  108. <dependencies>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-dependencies</artifactId>
  112. <version>${spring-boot.version}</version>
  113. <type>pom</type>
  114. <scope>import</scope>
  115. </dependency>
  116. </dependencies>
  117. </dependencyManagement>
  118. <build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-compiler-plugin</artifactId>
  123. <version>3.8.1</version>
  124. <configuration>
  125. <source>1.8</source>
  126. <target>1.8</target>
  127. <encoding>UTF-8</encoding>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-maven-plugin</artifactId>
  133. <version>${spring-boot.version}</version>
  134. <configuration>
  135. <mainClass>com.futu.course.GooseApplication</mainClass>
  136. <skip>true</skip>
  137. </configuration>
  138. <executions>
  139. <execution>
  140. <id>repackage</id>
  141. <goals>
  142. <goal>repackage</goal>
  143. </goals>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>