pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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.zhentao</groupId>
  6. <artifactId>TourismHD</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>TourismHD</name>
  9. <description>TourismHD</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.6.13</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>javax.xml.bind</groupId>
  19. <artifactId>jaxb-api</artifactId>
  20. <version>2.3.1</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.activation</groupId>
  24. <artifactId>activation</artifactId>
  25. <version>1.1.1</version>
  26. </dependency>
  27. <!-- no more than 2.3.3-->
  28. <dependency>
  29. <groupId>org.glassfish.jaxb</groupId>
  30. <artifactId>jaxb-runtime</artifactId>
  31. <version>2.3.3</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.aliyun.oss</groupId>
  35. <artifactId>aliyun-sdk-oss</artifactId>
  36. <version>3.17.4</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.zxing</groupId>
  40. <artifactId>core</artifactId>
  41. <version>3.5.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.zxing</groupId>
  45. <artifactId>javase</artifactId>
  46. <version>3.5.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.elasticsearch.client</groupId>
  50. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  51. <version>7.4.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.elasticsearch.client</groupId>
  55. <artifactId>elasticsearch-rest-client</artifactId>
  56. <version>7.4.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.elasticsearch</groupId>
  60. <artifactId>elasticsearch</artifactId>
  61. <version>7.4.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>fastjson</artifactId>
  66. <version>1.2.47</version>
  67. </dependency>
  68. <!-- <dependency>-->
  69. <!-- <groupId>org.springframework.boot</groupId>-->
  70. <!-- <artifactId>spring-boot-starter-data-mongodb</artifactId>-->
  71. <!-- </dependency>-->
  72. <!-- deekseep-->
  73. <dependency>
  74. <groupId>com.squareup.okhttp3</groupId>
  75. <artifactId>okhttp</artifactId>
  76. <version>4.9.3</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.mashape.unirest</groupId>
  80. <artifactId>unirest-java</artifactId>
  81. <version>1.4.9</version>
  82. </dependency>
  83. <!-- Spring Boot Starters -->
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-web</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-data-redis</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-test</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. <!-- MyBatis Plus -->
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>mybatis-plus-boot-starter</artifactId>
  105. <version>3.5.4</version>
  106. </dependency>
  107. <!-- MySQL -->
  108. <dependency>
  109. <groupId>mysql</groupId>
  110. <artifactId>mysql-connector-java</artifactId>
  111. </dependency>
  112. <!-- Lombok -->
  113. <dependency>
  114. <groupId>org.projectlombok</groupId>
  115. <artifactId>lombok</artifactId>
  116. </dependency>
  117. <!-- 关于微信登录的配置-->
  118. <dependency>
  119. <groupId>org.apache.httpcomponents</groupId>
  120. <artifactId>httpclient</artifactId>
  121. <version>4.5.13</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.jsonwebtoken</groupId>
  125. <artifactId>jjwt</artifactId>
  126. <version>0.9.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>cn.hutool</groupId>
  130. <artifactId>hutool-all</artifactId>
  131. <version>5.8.11</version> <!-- 确保版本号是正确的 -->
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.httpcomponents</groupId>
  135. <artifactId>httpcore</artifactId>
  136. <version>4.4.14</version>
  137. </dependency>
  138. <!-- jwt支持 -->
  139. <dependency>
  140. <groupId>com.auth0</groupId>
  141. <artifactId>java-jwt</artifactId>
  142. <version>3.19.2</version>
  143. </dependency>
  144. <!-- json格式化 -->
  145. <dependency>
  146. <groupId>com.google.code.gson</groupId>
  147. <artifactId>gson</artifactId>
  148. <version>2.8.9</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.hibernate.validator</groupId>
  152. <artifactId>hibernate-validator</artifactId>
  153. <version>6.2.0.Final</version>
  154. </dependency>
  155. <!-- Redisson -->
  156. <dependency>
  157. <groupId>org.redisson</groupId>
  158. <artifactId>redisson</artifactId>
  159. <version>3.18.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>jakarta.xml.bind</groupId>
  163. <artifactId>jakarta.xml.bind-api</artifactId>
  164. </dependency>
  165. </dependencies>
  166. <dependencyManagement>
  167. <dependencies>
  168. <dependency>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-dependencies</artifactId>
  171. <version>${spring-boot.version}</version>
  172. <type>pom</type>
  173. <scope>import</scope>
  174. </dependency>
  175. </dependencies>
  176. </dependencyManagement>
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-compiler-plugin</artifactId>
  182. <version>3.8.1</version>
  183. <configuration>
  184. <source>11</source>
  185. <target>11</target>
  186. <encoding>UTF-8</encoding>
  187. </configuration>
  188. </plugin>
  189. <plugin>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-maven-plugin</artifactId>
  192. <version>${spring-boot.version}</version>
  193. <configuration>
  194. <mainClass>com.zhentao.TourismHdApplication</mainClass>
  195. <skip>true</skip>
  196. </configuration>
  197. <executions>
  198. <execution>
  199. <id>repackage</id>
  200. <goals>
  201. <goal>repackage</goal>
  202. </goals>
  203. </execution>
  204. </executions>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. </project>