pom.xml 10 KB

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