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