pom.xml 9.4 KB

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