pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.chuanghai</groupId>
  12. <artifactId>studenthotel_houtai</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>studenthotel_houtai</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <tencent.qcloudsms.version>1.0.6</tencent.qcloudsms.version>
  19. </properties>
  20. <dependencies>
  21. <!-- 读取excel数据 -->
  22. <dependency>
  23. <groupId>org.apache.poi</groupId>
  24. <artifactId>poi</artifactId>
  25. <version>4.1.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi-ooxml</artifactId>
  30. <version>4.1.0</version>
  31. </dependency>
  32. <!-- fastjson -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>fastjson</artifactId>
  36. <version>2.0.12</version>
  37. </dependency>
  38. <!--引入JWT-->
  39. <dependency>
  40. <groupId>com.auth0</groupId>
  41. <artifactId>java-jwt</artifactId>
  42. <version>3.10.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.jsonwebtoken</groupId>
  46. <artifactId>jjwt</artifactId>
  47. <version>0.9.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.github.qcloudsms</groupId>
  51. <artifactId>qcloudsms</artifactId>
  52. <version>${tencent.qcloudsms.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.tencentcloudapi</groupId>
  56. <artifactId>tencentcloud-sdk-java</artifactId>
  57. <version>3.1.742</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-aop</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpclient</artifactId>
  66. <version>4.5.10</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.code.gson</groupId>
  70. <artifactId>gson</artifactId>
  71. <version>2.8.7</version>
  72. </dependency>
  73. <!-- 数据库驱动 -->
  74. <dependency>
  75. <groupId>mysql</groupId>
  76. <artifactId>mysql-connector-java</artifactId>
  77. </dependency>
  78. <!-- lombok -->
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. </dependency>
  83. <!-- mybatis-plus -->
  84. <!-- mybatis-plus 是自己开发,并非官方的! -->
  85. <dependency>
  86. <groupId>com.baomidou</groupId>
  87. <artifactId>mybatis-plus-boot-starter</artifactId>
  88. <version>3.0.5</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-web</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-test</artifactId>
  97. <scope>test</scope>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>org.junit.vintage</groupId>
  101. <artifactId>junit-vintage-engine</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-web</artifactId>
  108. <version>5.3.22</version>
  109. </dependency>
  110. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  111. <dependency>
  112. <groupId>org.eclipse.jgit</groupId>
  113. <artifactId>org.eclipse.jgit</artifactId>
  114. <version>5.4.3.201909031940-r</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-configuration-processor</artifactId>
  119. <optional>true</optional>
  120. </dependency>
  121. <!-- redis -->
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-data-redis</artifactId>
  125. <exclusions>
  126. <exclusion>
  127. <groupId>io.lettuce</groupId>
  128. <artifactId>lettuce-core</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <dependency>
  133. <groupId>redis.clients</groupId>
  134. <artifactId>jedis</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.springfox</groupId>
  138. <artifactId>springfox-swagger2</artifactId>
  139. <version>2.9.2</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>io.springfox</groupId>
  143. <artifactId>springfox-swagger-ui</artifactId>
  144. <version>2.9.2</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.velocity</groupId>
  148. <artifactId>velocity-engine-core</artifactId>
  149. <version>2.0</version>
  150. </dependency>
  151. </dependencies>
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-maven-plugin</artifactId>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>