pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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.0.0</version>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>distributed-print</module>
  11. <module>distributed-print-business</module>
  12. <module>teachcloud-common</module>
  13. <module>teachcloud-common-api</module>
  14. <module>teachcloud-task</module>
  15. <module>teachcloud-report</module>
  16. <module>teachcloud-report-business</module>
  17. </modules>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <maven.compiler.source>1.8</maven.compiler.source>
  22. <maven.compiler.target>1.8</maven.compiler.target>
  23. <qmth.boot.version>1.0.2</qmth.boot.version>
  24. <java.version>1.8</java.version>
  25. <swagger2.version>2.9.2</swagger2.version>
  26. <fastjson.version>1.2.68</fastjson.version>
  27. <fileupload.version>1.4</fileupload.version>
  28. <poi.version>3.17</poi.version>
  29. <aliyun.version>3.8.1</aliyun.version>
  30. <guava.version>27.1-jre</guava.version>
  31. <hutool.version>5.0.6</hutool.version>
  32. <bcprov.version>1.52</bcprov.version>
  33. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  34. <gson.version>2.8.6</gson.version>
  35. <commons.version>3.10</commons.version>
  36. <commons.codec.version>1.15</commons.codec.version>
  37. <commons-io.version>2.6</commons-io.version>
  38. <jackson.version>2.11.0</jackson.version>
  39. <swagger2-bootstrap.version>1.9.6</swagger2-bootstrap.version>
  40. <jetbrains.version>13.0</jetbrains.version>
  41. <httpclient.version>4.5.12</httpclient.version>
  42. <version-plugin.version>2.8.1</version-plugin.version>
  43. <netty-all.version>4.1.49.Final</netty-all.version>
  44. <itextpdf.version>5.5.13</itextpdf.version>
  45. <googleBar.version>3.4.0</googleBar.version>
  46. <freemarker.version>2.3.30</freemarker.version>
  47. <commons-text.version>1.9</commons-text.version>
  48. <junit.version>4.13</junit.version>
  49. <activiti.version>6.0.0</activiti.version>
  50. <activiti-modeler.version>5.22.0</activiti-modeler.version>
  51. </properties>
  52. <dependencyManagement>
  53. <dependencies>
  54. <dependency>
  55. <groupId>com.qmth.distributed.print</groupId>
  56. <artifactId>distributed-print</artifactId>
  57. <version>${project.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.qmth.teachcloud.common</groupId>
  61. <artifactId>teachcloud-common</artifactId>
  62. <version>${project.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.qmth.teachcloud.common.api</groupId>
  66. <artifactId>teachcloud-common-api</artifactId>
  67. <version>${project.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.qmth.distributed.print.business</groupId>
  71. <artifactId>distributed-print-business</artifactId>
  72. <version>${project.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.qmth.teachcloud.task</groupId>
  76. <artifactId>teachcloud-task</artifactId>
  77. <version>${project.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.qmth.teachcloud.report</groupId>
  81. <artifactId>teachcloud-report</artifactId>
  82. <version>${project.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.qmth.teachcloud.report.business</groupId>
  86. <artifactId>teachcloud-report-business</artifactId>
  87. <version>${project.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.qmth.boot</groupId>
  91. <artifactId>starter-api</artifactId>
  92. <version>${qmth.boot.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.qmth.boot</groupId>
  96. <artifactId>core-uid</artifactId>
  97. <version>${qmth.boot.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.qmth.boot</groupId>
  101. <artifactId>core-cache</artifactId>
  102. <version>${qmth.boot.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.qmth.boot</groupId>
  106. <artifactId>core-concurrent</artifactId>
  107. <version>${qmth.boot.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.qmth.boot</groupId>
  111. <artifactId>core-fss</artifactId>
  112. <version>${qmth.boot.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.qmth.boot</groupId>
  116. <artifactId>data-redis</artifactId>
  117. <version>${qmth.boot.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.qmth.boot</groupId>
  121. <artifactId>data-mybatis-plus</artifactId>
  122. <version>${qmth.boot.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>io.springfox</groupId>
  126. <artifactId>springfox-swagger2</artifactId>
  127. <version>${swagger2.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.github.xiaoymin</groupId>
  131. <artifactId>swagger-bootstrap-ui</artifactId>
  132. <version>${swagger2-bootstrap.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.commons</groupId>
  136. <artifactId>commons-lang3</artifactId>
  137. <version>${commons.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-codec</groupId>
  141. <artifactId>commons-codec</artifactId>
  142. <version>${commons.codec.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.commons</groupId>
  146. <artifactId>commons-text</artifactId>
  147. <version>${commons-text.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.google.code.gson</groupId>
  151. <artifactId>gson</artifactId>
  152. <version>${gson.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.google.guava</groupId>
  156. <artifactId>guava</artifactId>
  157. <version>${guava.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.poi</groupId>
  161. <artifactId>poi-ooxml</artifactId>
  162. <version>${poi.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.poi</groupId>
  166. <artifactId>poi-ooxml-schemas</artifactId>
  167. <version>${poi.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.poi</groupId>
  171. <artifactId>poi</artifactId>
  172. <version>${poi.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>commons-fileupload</groupId>
  176. <artifactId>commons-fileupload</artifactId>
  177. <version>${fileupload.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.aliyun.oss</groupId>
  181. <artifactId>aliyun-sdk-oss</artifactId>
  182. <version>${aliyun.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.alibaba</groupId>
  186. <artifactId>fastjson</artifactId>
  187. <version>${fastjson.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.fasterxml.jackson.core</groupId>
  191. <artifactId>jackson-core</artifactId>
  192. <version>${jackson.version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.fasterxml.jackson.core</groupId>
  196. <artifactId>jackson-annotations</artifactId>
  197. <version>${jackson.version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>com.fasterxml.jackson.core</groupId>
  201. <artifactId>jackson-databind</artifactId>
  202. <version>${jackson.version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>cn.hutool</groupId>
  206. <artifactId>hutool-all</artifactId>
  207. <version>${hutool.version}</version>
  208. </dependency>
  209. <!-- aes PKCS7 -->
  210. <dependency>
  211. <groupId>org.bouncycastle</groupId>
  212. <artifactId>bcprov-jdk15on</artifactId>
  213. <version>${bcprov.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.jetbrains</groupId>
  217. <artifactId>annotations</artifactId>
  218. <version>${jetbrains.version}</version>
  219. <scope>compile</scope>
  220. </dependency>
  221. <dependency>
  222. <groupId>commons-io</groupId>
  223. <artifactId>commons-io</artifactId>
  224. <version>${commons-io.version}</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.httpcomponents</groupId>
  228. <artifactId>httpclient</artifactId>
  229. <version>${httpclient.version}</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>io.netty</groupId>
  233. <artifactId>netty-all</artifactId>
  234. <version>${netty-all.version}</version>
  235. </dependency>
  236. <!--quartz-->
  237. <dependency>
  238. <groupId>org.springframework.boot</groupId>
  239. <artifactId>spring-boot-starter-quartz</artifactId>
  240. <version>${spring-boot.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>com.itextpdf</groupId>
  244. <artifactId>itextpdf</artifactId>
  245. <version>${itextpdf.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>com.google.zxing</groupId>
  249. <artifactId>core</artifactId>
  250. <version>${googleBar.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>com.google.zxing</groupId>
  254. <artifactId>javase</artifactId>
  255. <version>${googleBar.version}</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.freemarker</groupId>
  259. <artifactId>freemarker</artifactId>
  260. <version>${freemarker.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>junit</groupId>
  264. <artifactId>junit</artifactId>
  265. <version>${junit.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.activiti</groupId>
  269. <artifactId>activiti-engine</artifactId>
  270. <version>${activiti.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.activiti</groupId>
  274. <artifactId>activiti-spring</artifactId>
  275. <version>${activiti.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.activiti</groupId>
  279. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  280. <version>${activiti.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.activiti</groupId>
  284. <artifactId>activiti-common-rest</artifactId>
  285. <version>${activiti.version}</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.activiti</groupId>
  289. <artifactId>activiti-modeler</artifactId>
  290. <version>${activiti-modeler.version}</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.activiti</groupId>
  294. <artifactId>activiti-bpmn-layout</artifactId>
  295. <version>${activiti.version}</version>
  296. </dependency>
  297. </dependencies>
  298. </dependencyManagement>
  299. <dependencies>
  300. <!-- 默认依赖测试JAR -->
  301. <dependency>
  302. <groupId>org.springframework.boot</groupId>
  303. <artifactId>spring-boot-starter-test</artifactId>
  304. <version>${spring-boot.version}</version>
  305. <scope>test</scope>
  306. </dependency>
  307. </dependencies>
  308. <build>
  309. <plugins>
  310. <plugin>
  311. <groupId>org.apache.maven.plugins</groupId>
  312. <artifactId>maven-surefire-plugin</artifactId>
  313. <configuration>
  314. <skip>true</skip>
  315. <skipTests>true</skipTests>
  316. </configuration>
  317. </plugin>
  318. <plugin>
  319. <groupId>org.codehaus.mojo</groupId>
  320. <artifactId>versions-maven-plugin</artifactId>
  321. <version>${version-plugin.version}</version>
  322. <configuration>
  323. <generateBackupPoms>false</generateBackupPoms>
  324. </configuration>
  325. </plugin>
  326. <plugin>
  327. <groupId>org.apache.maven.plugins</groupId>
  328. <artifactId>maven-resources-plugin</artifactId>
  329. <version>3.2.0</version>
  330. <configuration>
  331. <encoding>UTF-8</encoding>
  332. <useDefaultDelimiters>false</useDefaultDelimiters>
  333. <delimiters>
  334. <delimiter>$[*]</delimiter>
  335. </delimiters>
  336. <!-- 过滤后缀不需要转码的文件后缀名pdf -->
  337. <nonFilteredFileExtensions>
  338. <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
  339. </nonFilteredFileExtensions>
  340. </configuration>
  341. </plugin>
  342. </plugins>
  343. </build>
  344. </project>