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