pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  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.2.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.yys</groupId>
  12. <artifactId>scsp</artifactId>
  13. <version>1.0.2</version>
  14. <name>scsp</name>
  15. <description>Shouzuanceping project for Spring Boot</description>
  16. <properties>
  17. <!-- 添加编码-->
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <logback.version>1.1.7</logback.version>
  22. <slf4j.version>1.7.21</slf4j.version>
  23. <janino.version>2.7.8</janino.version>
  24. <mybatis-plus-version>3.2.0</mybatis-plus-version>
  25. </properties>
  26. <dependencies>
  27. <!--websocket-->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-websocket</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.java-websocket</groupId>
  43. <artifactId>Java-WebSocket</artifactId>
  44. <version>1.5.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>${mybatis-plus-version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-generator</artifactId>
  54. <version>${mybatis-plus-version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.guava</groupId>
  58. <artifactId>guava</artifactId>
  59. <version>23.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.google.code.gson</groupId>
  63. <artifactId>gson</artifactId>
  64. <version>2.6.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.httpcomponents</groupId>
  68. <artifactId>httpclient</artifactId>
  69. <version>4.5.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.wechatpay-apiv3</groupId>
  73. <artifactId>wechatpay-apache-httpclient</artifactId>
  74. <version>0.4.7</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>fluent-hc</artifactId>
  79. <version>4.5.1</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.jodd/jodd-http -->
  82. <dependency>
  83. <groupId>org.jodd</groupId>
  84. <artifactId>jodd-http</artifactId>
  85. <version>3.6.2</version>
  86. </dependency>
  87. <!-- 工具类-->
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. <version>3.8.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-collections</groupId>
  95. <artifactId>commons-collections</artifactId>
  96. <version>3.2.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-codec</groupId>
  100. <artifactId>commons-codec</artifactId>
  101. <version>1.10</version>
  102. </dependency>
  103. <!--面向切面编程-->
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-aop</artifactId>
  107. </dependency>
  108. <!-- file upload tools -->
  109. <dependency>
  110. <groupId>commons-io</groupId>
  111. <artifactId>commons-io</artifactId>
  112. <version>2.6</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-fileupload</groupId>
  116. <artifactId>commons-fileupload</artifactId>
  117. <version>1.3.2</version>
  118. </dependency>
  119. <!-- mysql-->
  120. <!-- <dependency>-->
  121. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  122. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  123. <!-- <version>1.3.1</version>-->
  124. <!-- </dependency>-->
  125. <dependency>
  126. <groupId>mysql</groupId>
  127. <artifactId>mysql-connector-java</artifactId>
  128. <scope>runtime</scope>
  129. </dependency>
  130. <!--微信支付 -->
  131. <dependency>
  132. <groupId>com.github.wxpay</groupId>
  133. <artifactId>wxpay-sdk</artifactId>
  134. <version>0.0.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>cn.hutool</groupId>
  138. <artifactId>hutool-all</artifactId>
  139. <version>5.6.6</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.alipay.sdk</groupId>
  143. <artifactId>alipay-sdk-java</artifactId>
  144. <version>4.16.2.ALL</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.squareup.okhttp3</groupId>
  148. <artifactId>okhttp</artifactId>
  149. <version>3.10.0</version>
  150. </dependency>
  151. <!-- JDBC-->
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-jdbc</artifactId>
  155. </dependency>
  156. <!-- mybatis-->
  157. <dependency>
  158. <groupId>org.mybatis.generator</groupId>
  159. <artifactId>mybatis-generator-core</artifactId>
  160. <version>1.3.5</version>
  161. </dependency>
  162. <!-- pagehelper -->
  163. <dependency>
  164. <groupId>com.github.pagehelper</groupId>
  165. <artifactId>pagehelper</artifactId>
  166. <version>4.1.6</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.httpcomponents</groupId>
  170. <artifactId>httpclient</artifactId>
  171. <version>4.5.1</version>
  172. </dependency>
  173. <!-- Druid-->
  174. <dependency>
  175. <groupId>com.alibaba</groupId>
  176. <artifactId>druid</artifactId>
  177. <version>1.1.9</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.alibaba</groupId>
  181. <artifactId>druid-spring-boot-starter</artifactId>
  182. <version>1.1.9</version>
  183. </dependency>
  184. <!-- JSON-->
  185. <dependency>
  186. <groupId>com.alibaba</groupId>
  187. <artifactId>fastjson</artifactId>
  188. <version>1.2.30</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>net.sf.json-lib</groupId>
  192. <artifactId>json-lib</artifactId>
  193. <version>2.4</version>
  194. <classifier>jdk15</classifier>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.jdom</groupId>
  198. <artifactId>jdom</artifactId>
  199. <version>1.1.3</version>
  200. </dependency>
  201. <!-- 返回html-->
  202. <dependency>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  205. </dependency>
  206. <!-- shiro-->
  207. <!-- shiro spring. -->
  208. <dependency>
  209. <groupId>org.apache.shiro</groupId>
  210. <artifactId>shiro-core</artifactId>
  211. <version>1.2.2</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.apache.shiro</groupId>
  215. <artifactId>shiro-spring</artifactId>
  216. <version>1.2.2</version>
  217. </dependency>
  218. <!-- shiro ehcache -->
  219. <dependency>
  220. <groupId>org.apache.shiro</groupId>
  221. <artifactId>shiro-ehcache</artifactId>
  222. <version>1.2.2</version>
  223. </dependency>
  224. <!-- shiro-thymeleaf 2.0.0-->
  225. <dependency>
  226. <groupId>com.github.theborakompanioni</groupId>
  227. <artifactId>thymeleaf-extras-shiro</artifactId>
  228. <version>2.0.0</version>
  229. </dependency>
  230. <!-- java mail -->
  231. <dependency>
  232. <groupId>com.sun.mail</groupId>
  233. <artifactId>javax.mail</artifactId>
  234. <version>1.4.4</version>
  235. </dependency>
  236. <!-- 验证码kaptcha -->
  237. <dependency>
  238. <groupId>com.github.penggle</groupId>
  239. <artifactId>kaptcha</artifactId>
  240. <version>2.3.2</version>
  241. </dependency>
  242. <!-- 验证码工具类-->
  243. <dependency>
  244. <groupId>com.github.qcloudsms</groupId>
  245. <artifactId>qcloudsms</artifactId>
  246. <version>1.0.6</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.github.qcloudsms</groupId>
  250. <artifactId>qcloudsms</artifactId>
  251. <version>1.0.6</version>
  252. </dependency>
  253. <!-- 二维码 -->
  254. <dependency>
  255. <groupId>com.google.zxing</groupId>
  256. <artifactId>core</artifactId>
  257. <version>3.2.1</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.google.zxing</groupId>
  261. <artifactId>javase</artifactId>
  262. <version>3.2.1</version>
  263. </dependency>
  264. <!-- Mybatis-Plus 自动生成实体类-->
  265. <dependency>
  266. <groupId>com.baomidou</groupId>
  267. <artifactId>mybatis-plus</artifactId>
  268. <version>3.2.0</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.apache.velocity</groupId>
  272. <artifactId>velocity</artifactId>
  273. <version>1.7</version>
  274. </dependency>
  275. <!--POIExcel-->
  276. <dependency>
  277. <groupId>org.apache.poi</groupId>
  278. <artifactId>poi</artifactId>
  279. <version>3.14</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>org.apache.poi</groupId>
  283. <artifactId>poi-ooxml</artifactId>
  284. <version>3.14</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.apache.poi</groupId>
  288. <artifactId>poi-ooxml-schemas</artifactId>
  289. <version>3.14</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>com.aliyun</groupId>
  293. <artifactId>aliyun-java-sdk-core</artifactId>
  294. <version>4.5.1</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>com.aliyun</groupId>
  298. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  299. <version>1.1.0</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>com.aliyun.oss</groupId>
  303. <artifactId>aliyun-sdk-oss</artifactId>
  304. <version>3.1.0</version>
  305. </dependency>
  306. <!--swagger-->
  307. <dependency>
  308. <groupId>io.springfox</groupId>
  309. <artifactId>springfox-swagger2</artifactId>
  310. <version>2.9.2</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>io.springfox</groupId>
  314. <artifactId>springfox-swagger-ui</artifactId>
  315. <version>2.9.2</version>
  316. </dependency>
  317. <!--jwt-->
  318. <dependency>
  319. <groupId>io.jsonwebtoken</groupId>
  320. <artifactId>jjwt</artifactId>
  321. <version>0.9.0</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.bouncycastle</groupId>
  325. <artifactId>bcprov-jdk16</artifactId>
  326. <version>1.46</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>org.springframework.boot</groupId>
  330. <artifactId>spring-boot-starter-test</artifactId>
  331. <scope>test</scope>
  332. <exclusions>
  333. <exclusion>
  334. <groupId>org.junit.vintage</groupId>
  335. <artifactId>junit-vintage-engine</artifactId>
  336. </exclusion>
  337. </exclusions>
  338. </dependency>
  339. <!-- 日志文件管理包 -->
  340. <!-- logback+slf4j -->
  341. <dependency>
  342. <groupId>org.slf4j</groupId>
  343. <artifactId>slf4j-api</artifactId>
  344. <version>${slf4j.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>ch.qos.logback</groupId>
  348. <artifactId>logback-core</artifactId>
  349. <version>${logback.version}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>ch.qos.logback</groupId>
  353. <artifactId>logback-access</artifactId>
  354. <version>${logback.version}</version>
  355. </dependency>
  356. <dependency>
  357. <groupId>ch.qos.logback</groupId>
  358. <artifactId>logback-classic</artifactId>
  359. <version>${logback.version}</version>
  360. </dependency>
  361. <!-- 日志文件管理包-提高性能log输出性能 -->
  362. <!-- janino -->
  363. <dependency>
  364. <groupId>org.codehaus.janino</groupId>
  365. <artifactId>commons-compiler</artifactId>
  366. <version>${janino.version}</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.codehaus.janino</groupId>
  370. <artifactId>janino</artifactId>
  371. <version>${janino.version}</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>com.yky</groupId>
  375. <artifactId>mqtt-client</artifactId>
  376. <version>1.0.1</version>
  377. <scope>system</scope>
  378. <systemPath>${project.basedir}/src/main/resources/lib/mqtt-client-1.9-uber.jar</systemPath>
  379. </dependency>
  380. <dependency>
  381. <groupId>com.json.protocol</groupId>
  382. <artifactId>protocol-sdk</artifactId>
  383. <scope>system</scope>
  384. <version>1.0</version>
  385. <systemPath>${project.basedir}/src/main/resources/lib/protocol-sdk.jar</systemPath>
  386. </dependency>
  387. </dependencies>
  388. <build>
  389. <plugins>
  390. <plugin>
  391. <groupId>org.apache.maven.plugins</groupId>
  392. <artifactId>maven-compiler-plugin</artifactId>
  393. <configuration>
  394. <source>1.8</source>
  395. <target>1.8</target>
  396. </configuration>
  397. </plugin>
  398. <plugin>
  399. <groupId>org.springframework.boot</groupId>
  400. <artifactId>spring-boot-maven-plugin</artifactId>
  401. <configuration>
  402. <!-- 没有该配置,devtools 不生效 -->
  403. <fork>true</fork>
  404. <addResources>true</addResources>
  405. <includeSystemScope>true</includeSystemScope>
  406. </configuration>
  407. </plugin>
  408. </plugins>
  409. </build>
  410. </project>