pom.xml 12 KB

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