pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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.template</groupId>
  12. <artifactId>mybatis_plus</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>mybatis_plus</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. <!--<dependency>
  22. <groupId>com.github.wechatpay-apiv3</groupId>
  23. <artifactId>wechatpay-java</artifactId>
  24. </dependency>-->
  25. <!-- <dependency>
  26. <groupId>com.github.binarywang</groupId>
  27. <artifactId>weixin-java-mp</artifactId>
  28. <version>4.3.0</version>
  29. </dependency>-->
  30. <!-- xk-time -->
  31. <dependency>
  32. <groupId>com.github.xkzhangsan</groupId>
  33. <artifactId>xk-time</artifactId>
  34. <version>3.1.0</version>
  35. </dependency>
  36. <!-- hutool cache -->
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-cache</artifactId>
  40. <version>5.3.3</version>
  41. </dependency>
  42. <!-- mqtt-->
  43. <dependency>
  44. <groupId>org.eclipse.paho</groupId>
  45. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  46. <version>1.2.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>javax.validation</groupId>
  50. <artifactId>validation-api</artifactId>
  51. <version>2.0.1.Final</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.hibernate</groupId>
  55. <artifactId>hibernate-validator</artifactId>
  56. <version>6.1.5.Final</version>
  57. </dependency>
  58. <!-- 读取excel数据 -->
  59. <dependency>
  60. <groupId>org.apache.poi</groupId>
  61. <artifactId>poi</artifactId>
  62. <version>4.1.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.poi</groupId>
  66. <artifactId>poi-ooxml</artifactId>
  67. <version>4.1.0</version>
  68. </dependency>
  69. <!-- fastjson -->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. <version>2.0.12</version>
  74. </dependency>
  75. <!--引入JWT-->
  76. <dependency>
  77. <groupId>com.auth0</groupId>
  78. <artifactId>java-jwt</artifactId>
  79. <version>3.10.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>io.jsonwebtoken</groupId>
  83. <artifactId>jjwt</artifactId>
  84. <version>0.9.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.qcloudsms</groupId>
  88. <artifactId>qcloudsms</artifactId>
  89. <version>${tencent.qcloudsms.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.tencentcloudapi</groupId>
  93. <artifactId>tencentcloud-sdk-java</artifactId>
  94. <version>3.1.742</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-aop</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.httpcomponents</groupId>
  102. <artifactId>httpclient</artifactId>
  103. <version>4.5.10</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.google.code.gson</groupId>
  107. <artifactId>gson</artifactId>
  108. <version>2.8.7</version>
  109. </dependency>
  110. <!-- 数据库驱动 -->
  111. <dependency>
  112. <groupId>mysql</groupId>
  113. <artifactId>mysql-connector-java</artifactId>
  114. </dependency>
  115. <!-- lombok -->
  116. <dependency>
  117. <groupId>org.projectlombok</groupId>
  118. <artifactId>lombok</artifactId>
  119. </dependency>
  120. <!-- mybatis-plus -->
  121. <!-- mybatis-plus 是自己开发,并非官方的! -->
  122. <dependency>
  123. <groupId>com.baomidou</groupId>
  124. <artifactId>mybatis-plus-boot-starter</artifactId>
  125. <version>3.0.5</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-web</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-starter-test</artifactId>
  134. <scope>test</scope>
  135. <exclusions>
  136. <exclusion>
  137. <groupId>org.junit.vintage</groupId>
  138. <artifactId>junit-vintage-engine</artifactId>
  139. </exclusion>
  140. </exclusions>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.springframework</groupId>
  144. <artifactId>spring-web</artifactId>
  145. <version>5.3.22</version>
  146. </dependency>
  147. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  148. <dependency>
  149. <groupId>org.eclipse.jgit</groupId>
  150. <artifactId>org.eclipse.jgit</artifactId>
  151. <version>5.4.3.201909031940-r</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-configuration-processor</artifactId>
  156. <optional>true</optional>
  157. </dependency>
  158. <!-- redis -->
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-starter-data-redis</artifactId>
  162. <exclusions>
  163. <exclusion>
  164. <groupId>io.lettuce</groupId>
  165. <artifactId>lettuce-core</artifactId>
  166. </exclusion>
  167. </exclusions>
  168. </dependency>
  169. <dependency>
  170. <groupId>redis.clients</groupId>
  171. <artifactId>jedis</artifactId>
  172. </dependency>
  173. <dependency>
  174. <groupId>io.springfox</groupId>
  175. <artifactId>springfox-swagger2</artifactId>
  176. <version>2.9.2</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>io.springfox</groupId>
  180. <artifactId>springfox-swagger-ui</artifactId>
  181. <version>2.9.2</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.apache.velocity</groupId>
  185. <artifactId>velocity-engine-core</artifactId>
  186. <version>2.0</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>jakarta.validation</groupId>
  190. <artifactId>jakarta.validation-api</artifactId>
  191. <version>2.0.2</version>
  192. </dependency>
  193. </dependencies>
  194. <build>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.springframework.boot</groupId>
  198. <artifactId>spring-boot-maven-plugin</artifactId>
  199. </plugin>
  200. </plugins>
  201. </build>
  202. </project>