pom.xml 8.7 KB

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