pom.xml 9.1 KB

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