pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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.binarywang</groupId>
  23. <artifactId>weixin-java-mp</artifactId>
  24. <version>4.3.0</version>
  25. </dependency>
  26. <!-- 海康 -->
  27. <dependency>
  28. <groupId>com.hikvision.ga</groupId>
  29. <artifactId>artemis-http-client</artifactId>
  30. <version>1.1.3</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>open.platform</groupId>
  34. <artifactId>platform</artifactId>
  35. <version>1.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.validation</groupId>
  39. <artifactId>validation-api</artifactId>
  40. <version>2.0.1.Final</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hibernate</groupId>
  44. <artifactId>hibernate-validator</artifactId>
  45. <version>6.1.5.Final</version>
  46. </dependency>
  47. <!-- 读取excel数据 -->
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi</artifactId>
  51. <version>4.1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.poi</groupId>
  55. <artifactId>poi-ooxml</artifactId>
  56. <version>4.1.0</version>
  57. </dependency>
  58. <!-- fastjson -->
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>2.0.12</version>
  63. </dependency>
  64. <!--引入JWT-->
  65. <dependency>
  66. <groupId>com.auth0</groupId>
  67. <artifactId>java-jwt</artifactId>
  68. <version>3.10.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.jsonwebtoken</groupId>
  72. <artifactId>jjwt</artifactId>
  73. <version>0.9.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.github.qcloudsms</groupId>
  77. <artifactId>qcloudsms</artifactId>
  78. <version>${tencent.qcloudsms.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.tencentcloudapi</groupId>
  82. <artifactId>tencentcloud-sdk-java</artifactId>
  83. <version>3.1.742</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-aop</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.httpcomponents</groupId>
  91. <artifactId>httpclient</artifactId>
  92. <version>4.5.10</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.google.code.gson</groupId>
  96. <artifactId>gson</artifactId>
  97. <version>2.8.7</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-quartz</artifactId>
  102. </dependency>
  103. <!-- 数据库驱动 -->
  104. <dependency>
  105. <groupId>mysql</groupId>
  106. <artifactId>mysql-connector-java</artifactId>
  107. </dependency>
  108. <!-- lombok -->
  109. <dependency>
  110. <groupId>org.projectlombok</groupId>
  111. <artifactId>lombok</artifactId>
  112. </dependency>
  113. <!-- mybatis-plus -->
  114. <!-- mybatis-plus 是自己开发,并非官方的! -->
  115. <dependency>
  116. <groupId>com.baomidou</groupId>
  117. <artifactId>mybatis-plus-boot-starter</artifactId>
  118. <version>3.0.5</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-starter-web</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-test</artifactId>
  127. <scope>test</scope>
  128. <exclusions>
  129. <exclusion>
  130. <groupId>org.junit.vintage</groupId>
  131. <artifactId>junit-vintage-engine</artifactId>
  132. </exclusion>
  133. </exclusions>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework</groupId>
  137. <artifactId>spring-web</artifactId>
  138. <version>5.3.22</version>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  141. <dependency>
  142. <groupId>org.eclipse.jgit</groupId>
  143. <artifactId>org.eclipse.jgit</artifactId>
  144. <version>5.4.3.201909031940-r</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-configuration-processor</artifactId>
  149. <optional>true</optional>
  150. </dependency>
  151. <!-- redis -->
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-data-redis</artifactId>
  155. <exclusions>
  156. <exclusion>
  157. <groupId>io.lettuce</groupId>
  158. <artifactId>lettuce-core</artifactId>
  159. </exclusion>
  160. </exclusions>
  161. </dependency>
  162. <dependency>
  163. <groupId>redis.clients</groupId>
  164. <artifactId>jedis</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>io.springfox</groupId>
  168. <artifactId>springfox-swagger2</artifactId>
  169. <version>2.9.2</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>io.springfox</groupId>
  173. <artifactId>springfox-swagger-ui</artifactId>
  174. <version>2.9.2</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.velocity</groupId>
  178. <artifactId>velocity-engine-core</artifactId>
  179. <version>2.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>jakarta.validation</groupId>
  183. <artifactId>jakarta.validation-api</artifactId>
  184. <version>2.0.2</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.qcloud</groupId>
  188. <artifactId>cos_api</artifactId>
  189. <version>5.6.155</version>
  190. </dependency>
  191. <!--hutools-->
  192. <dependency>
  193. <groupId>cn.hutool</groupId>
  194. <artifactId>hutool-all</artifactId>
  195. <version>5.4.3</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.github.pagehelper</groupId>
  199. <artifactId>pagehelper-spring-boot-starter</artifactId>
  200. <version>1.4.2</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.springframework</groupId>
  204. <artifactId>spring-test</artifactId>
  205. <version>6.0.9</version>
  206. <scope>compile</scope>
  207. </dependency>
  208. <!-- 上传文件的依赖 -->
  209. <dependency>
  210. <!--common-fileupload的依赖组件-->
  211. <groupId>commons-io</groupId>
  212. <artifactId>commons-io</artifactId>
  213. <version>2.6</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>commons-fileupload</groupId>
  217. <artifactId>commons-fileupload</artifactId>
  218. <version>1.4</version>
  219. </dependency>
  220. </dependencies>
  221. <build>
  222. <plugins>
  223. <plugin>
  224. <groupId>org.springframework.boot</groupId>
  225. <artifactId>spring-boot-maven-plugin</artifactId>
  226. </plugin>
  227. </plugins>
  228. </build>
  229. </project>