pom.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  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. <groupId>com.qmth.distributed.print.service</groupId>
  6. <artifactId>distributed-print-service</artifactId>
  7. <version>3.4.2</version>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>distributed-print</module>
  11. <module>distributed-print-business</module>
  12. <module>teachcloud-mark</module>
  13. <module>teachcloud-common</module>
  14. <module>teachcloud-common-api</module>
  15. <module>teachcloud-task</module>
  16. <module>teachcloud-report</module>
  17. <module>teachcloud-report-business</module>
  18. <module>teachcloud-obe</module>
  19. </modules>
  20. <properties>
  21. <java.version>1.8</java.version>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <maven.compiler.source>1.8</maven.compiler.source>
  24. <maven.compiler.target>1.8</maven.compiler.target>
  25. <qmth.boot.version>1.0.5</qmth.boot.version>
  26. <!-- <swagger2.version>2.9.2</swagger2.version>-->
  27. <knife4j.version>2.0.7</knife4j.version>
  28. <fastjson.version>1.2.68</fastjson.version>
  29. <fileupload.version>1.4</fileupload.version>
  30. <poi.version>5.2.2</poi.version>
  31. <aliyun.version>3.8.1</aliyun.version>
  32. <guava.version>27.1-jre</guava.version>
  33. <hutool.version>5.0.6</hutool.version>
  34. <bcprov.version>1.52</bcprov.version>
  35. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  36. <gson.version>2.8.6</gson.version>
  37. <commons.version>3.10</commons.version>
  38. <commons.codec.version>1.15</commons.codec.version>
  39. <commons-io.version>2.11.0</commons-io.version>
  40. <jackson.version>2.11.0</jackson.version>
  41. <swagger2-bootstrap.version>1.9.6</swagger2-bootstrap.version>
  42. <jetbrains.version>13.0</jetbrains.version>
  43. <httpclient.version>4.5.12</httpclient.version>
  44. <version-plugin.version>2.8.1</version-plugin.version>
  45. <netty-all.version>4.1.49.Final</netty-all.version>
  46. <itextpdf.version>5.5.13</itextpdf.version>
  47. <itextasian.version>5.2.0</itextasian.version>
  48. <googleBar.version>3.4.0</googleBar.version>
  49. <freemarker.version>2.3.30</freemarker.version>
  50. <commons-text.version>1.9</commons-text.version>
  51. <junit.version>4.13</junit.version>
  52. <activiti.version>6.0.0</activiti.version>
  53. <activiti-modeler.version>5.22.0</activiti-modeler.version>
  54. <zip4j.version>1.3.3</zip4j.version>
  55. <nanoid.version>2.0.0</nanoid.version>
  56. <!-- <jasypt.version>3.0.3</jasypt.version>-->
  57. <poi-tl.version>1.12.1</poi-tl.version>
  58. <poi-ooxml-schemas.version>4.1.2</poi-ooxml-schemas.version>
  59. <jdframe.version>0.0.5</jdframe.version>
  60. </properties>
  61. <dependencyManagement>
  62. <dependencies>
  63. <dependency>
  64. <groupId>com.qmth.distributed.print</groupId>
  65. <artifactId>distributed-print</artifactId>
  66. <version>${project.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.qmth.teachcloud.common</groupId>
  70. <artifactId>teachcloud-common</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.qmth.teachcloud.common.api</groupId>
  75. <artifactId>teachcloud-common-api</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.qmth.distributed.print.business</groupId>
  80. <artifactId>distributed-print-business</artifactId>
  81. <version>${project.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.qmth.teachcloud.mark</groupId>
  85. <artifactId>teachcloud-mark</artifactId>
  86. <version>${project.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.qmth.teachcloud.obe</groupId>
  90. <artifactId>teachcloud-obe</artifactId>
  91. <version>${project.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.qmth.teachcloud.task</groupId>
  95. <artifactId>teachcloud-task</artifactId>
  96. <version>${project.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.qmth.teachcloud.report</groupId>
  100. <artifactId>teachcloud-report</artifactId>
  101. <version>${project.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.qmth.teachcloud.report.business</groupId>
  105. <artifactId>teachcloud-report-business</artifactId>
  106. <version>${project.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.qmth.boot</groupId>
  110. <artifactId>starter-api</artifactId>
  111. <version>${qmth.boot.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.qmth.boot</groupId>
  115. <artifactId>core-uid</artifactId>
  116. <version>${qmth.boot.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.qmth.boot</groupId>
  120. <artifactId>core-cache</artifactId>
  121. <version>${qmth.boot.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.qmth.boot</groupId>
  125. <artifactId>core-concurrent</artifactId>
  126. <version>${qmth.boot.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.qmth.boot</groupId>
  130. <artifactId>core-fss</artifactId>
  131. <version>${qmth.boot.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.qmth.boot</groupId>
  135. <artifactId>data-redis</artifactId>
  136. <version>${qmth.boot.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.qmth.boot</groupId>
  140. <artifactId>data-mybatis-plus</artifactId>
  141. <version>${qmth.boot.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.qmth.boot</groupId>
  145. <artifactId>tools-device</artifactId>
  146. <version>${qmth.boot.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.qmth.boot</groupId>
  150. <artifactId>core-solar</artifactId>
  151. <version>${qmth.boot.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.qmth.boot</groupId>
  155. <artifactId>core-logging</artifactId>
  156. <version>${qmth.boot.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.qmth.boot</groupId>
  160. <artifactId>core-models</artifactId>
  161. <version>${qmth.boot.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.qmth.boot</groupId>
  165. <artifactId>core-retrofit</artifactId>
  166. <version>${qmth.boot.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.qmth.boot</groupId>
  170. <artifactId>core-sms</artifactId>
  171. <version>${qmth.boot.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.qmth.boot</groupId>
  175. <artifactId>tools-poi</artifactId>
  176. <version>${qmth.boot.version}</version>
  177. </dependency>
  178. <!-- <dependency>-->
  179. <!-- <groupId>io.springfox</groupId>-->
  180. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  181. <!-- <version>${swagger2.version}</version>-->
  182. <!-- </dependency>-->
  183. <!-- <dependency>-->
  184. <!-- <groupId>io.springfox</groupId>-->
  185. <!-- <artifactId>springfox-swagger2</artifactId>-->
  186. <!-- <version>${swagger2.version}</version>-->
  187. <!-- </dependency>-->
  188. <dependency>
  189. <groupId>com.github.xiaoymin</groupId>
  190. <artifactId>knife4j-spring-boot-starter</artifactId>
  191. <version>${knife4j.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.commons</groupId>
  195. <artifactId>commons-lang3</artifactId>
  196. <version>${commons.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>commons-codec</groupId>
  200. <artifactId>commons-codec</artifactId>
  201. <version>${commons.codec.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.commons</groupId>
  205. <artifactId>commons-text</artifactId>
  206. <version>${commons-text.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.google.code.gson</groupId>
  210. <artifactId>gson</artifactId>
  211. <version>${gson.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>com.google.guava</groupId>
  215. <artifactId>guava</artifactId>
  216. <version>${guava.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.apache.poi</groupId>
  220. <artifactId>poi-ooxml</artifactId>
  221. <version>${poi.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.apache.poi</groupId>
  225. <artifactId>poi-ooxml-schemas</artifactId>
  226. <version>${poi-ooxml-schemas.version}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.poi</groupId>
  230. <artifactId>poi</artifactId>
  231. <version>${poi.version}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>commons-fileupload</groupId>
  235. <artifactId>commons-fileupload</artifactId>
  236. <version>${fileupload.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.aliyun.oss</groupId>
  240. <artifactId>aliyun-sdk-oss</artifactId>
  241. <version>${aliyun.version}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.alibaba</groupId>
  245. <artifactId>fastjson</artifactId>
  246. <version>${fastjson.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.fasterxml.jackson.core</groupId>
  250. <artifactId>jackson-core</artifactId>
  251. <version>${jackson.version}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>com.fasterxml.jackson.core</groupId>
  255. <artifactId>jackson-annotations</artifactId>
  256. <version>${jackson.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.fasterxml.jackson.core</groupId>
  260. <artifactId>jackson-databind</artifactId>
  261. <version>${jackson.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>cn.hutool</groupId>
  265. <artifactId>hutool-all</artifactId>
  266. <version>${hutool.version}</version>
  267. </dependency>
  268. <!-- aes PKCS7 -->
  269. <dependency>
  270. <groupId>org.bouncycastle</groupId>
  271. <artifactId>bcprov-jdk15on</artifactId>
  272. <version>${bcprov.version}</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.jetbrains</groupId>
  276. <artifactId>annotations</artifactId>
  277. <version>${jetbrains.version}</version>
  278. <scope>compile</scope>
  279. </dependency>
  280. <dependency>
  281. <groupId>commons-io</groupId>
  282. <artifactId>commons-io</artifactId>
  283. <version>${commons-io.version}</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.apache.httpcomponents</groupId>
  287. <artifactId>httpclient</artifactId>
  288. <version>${httpclient.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>io.netty</groupId>
  292. <artifactId>netty-all</artifactId>
  293. <version>${netty-all.version}</version>
  294. </dependency>
  295. <!--quartz-->
  296. <dependency>
  297. <groupId>org.springframework.boot</groupId>
  298. <artifactId>spring-boot-starter-quartz</artifactId>
  299. <version>${spring-boot.version}</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>com.itextpdf</groupId>
  303. <artifactId>itextpdf</artifactId>
  304. <version>${itextpdf.version}</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>com.itextpdf</groupId>
  308. <artifactId>itext-asian</artifactId>
  309. <version>${itextasian.version}</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>com.google.zxing</groupId>
  313. <artifactId>core</artifactId>
  314. <version>${googleBar.version}</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.google.zxing</groupId>
  318. <artifactId>javase</artifactId>
  319. <version>${googleBar.version}</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>org.freemarker</groupId>
  323. <artifactId>freemarker</artifactId>
  324. <version>${freemarker.version}</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>junit</groupId>
  328. <artifactId>junit</artifactId>
  329. <version>${junit.version}</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>org.activiti</groupId>
  333. <artifactId>activiti-engine</artifactId>
  334. <version>${activiti.version}</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.activiti</groupId>
  338. <artifactId>activiti-spring</artifactId>
  339. <version>${activiti.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.activiti</groupId>
  343. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  344. <version>${activiti.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>org.activiti</groupId>
  348. <artifactId>activiti-common-rest</artifactId>
  349. <version>${activiti.version}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>org.activiti</groupId>
  353. <artifactId>activiti-modeler</artifactId>
  354. <version>${activiti-modeler.version}</version>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.activiti</groupId>
  358. <artifactId>activiti-bpmn-layout</artifactId>
  359. <version>${activiti.version}</version>
  360. </dependency>
  361. <dependency>
  362. <groupId>net.lingala.zip4j</groupId>
  363. <artifactId>zip4j</artifactId>
  364. <version>${zip4j.version}</version>
  365. </dependency>
  366. <dependency>
  367. <groupId>com.aventrix.jnanoid</groupId>
  368. <artifactId>jnanoid</artifactId>
  369. <version>${nanoid.version}</version>
  370. </dependency>
  371. <!-- <dependency>-->
  372. <!-- <groupId>com.github.ulisesbocchio</groupId>-->
  373. <!-- <artifactId>jasypt-spring-boot-starter</artifactId>-->
  374. <!-- <version>${jasypt.version}</version>-->
  375. <!-- </dependency>-->
  376. <!-- <dependency>-->
  377. <!-- <groupId>org.apache.maven</groupId>-->
  378. <!-- <artifactId>maven-model</artifactId>-->
  379. <!-- <version>3.0</version>-->
  380. <!-- </dependency>-->
  381. <dependency>
  382. <groupId>com.github.jeffreyning</groupId>
  383. <artifactId>mybatisplus-plus</artifactId>
  384. <version>1.5.1-RELEASE</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>com.deepoove</groupId>
  388. <artifactId>poi-tl</artifactId>
  389. <version>${poi-tl.version}</version>
  390. </dependency>
  391. <dependency>
  392. <groupId>com.qmth.boot</groupId>
  393. <artifactId>core-rate-limit</artifactId>
  394. <version>${qmth.boot.version}</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>com.qmth.boot</groupId>
  398. <artifactId>tools-common</artifactId>
  399. <version>${qmth.boot.version}</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>io.github.burukeyou</groupId>
  403. <artifactId>jdframe</artifactId>
  404. <version>${jdframe.version}</version>
  405. </dependency>
  406. </dependencies>
  407. </dependencyManagement>
  408. <dependencies>
  409. <!-- 默认依赖测试JAR -->
  410. <dependency>
  411. <groupId>org.springframework.boot</groupId>
  412. <artifactId>spring-boot-starter-test</artifactId>
  413. <version>${spring-boot.version}</version>
  414. <scope>test</scope>
  415. </dependency>
  416. </dependencies>
  417. <build>
  418. <plugins>
  419. <plugin>
  420. <groupId>org.apache.maven.plugins</groupId>
  421. <artifactId>maven-surefire-plugin</artifactId>
  422. <configuration>
  423. <skip>true</skip>
  424. <skipTests>true</skipTests>
  425. </configuration>
  426. </plugin>
  427. <plugin>
  428. <groupId>org.codehaus.mojo</groupId>
  429. <artifactId>versions-maven-plugin</artifactId>
  430. <version>${version-plugin.version}</version>
  431. <configuration>
  432. <generateBackupPoms>false</generateBackupPoms>
  433. </configuration>
  434. </plugin>
  435. <plugin>
  436. <groupId>org.apache.maven.plugins</groupId>
  437. <artifactId>maven-resources-plugin</artifactId>
  438. <version>3.2.0</version>
  439. <configuration>
  440. <encoding>UTF-8</encoding>
  441. <useDefaultDelimiters>false</useDefaultDelimiters>
  442. <delimiters>
  443. <delimiter>$[*]</delimiter>
  444. </delimiters>
  445. <!-- 过滤后缀不需要转码的文件后缀名pdf -->
  446. <nonFilteredFileExtensions>
  447. <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
  448. </nonFilteredFileExtensions>
  449. </configuration>
  450. </plugin>
  451. </plugins>
  452. </build>
  453. </project>