pom.xml 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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>1.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. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>com.qmth.distributed.print</groupId>
  46. <artifactId>distributed-print</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.qmth.distributed.print.common</groupId>
  51. <artifactId>distributed-print-common</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.qmth.distributed.print.business</groupId>
  56. <artifactId>distributed-print-business</artifactId>
  57. <version>${project.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.qmth.distributed.print.task</groupId>
  61. <artifactId>distributed-print-task</artifactId>
  62. <version>${project.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.qmth.boot</groupId>
  66. <artifactId>starter-api</artifactId>
  67. <version>${qmth.boot.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.qmth.boot</groupId>
  71. <artifactId>core-uid</artifactId>
  72. <version>${qmth.boot.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.qmth.boot</groupId>
  76. <artifactId>core-cache</artifactId>
  77. <version>${qmth.boot.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.qmth.boot</groupId>
  81. <artifactId>core-concurrent</artifactId>
  82. <version>${qmth.boot.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.qmth.boot</groupId>
  86. <artifactId>data-redis</artifactId>
  87. <version>${qmth.boot.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.qmth.boot</groupId>
  91. <artifactId>data-mysql-mp</artifactId>
  92. <version>${qmth.boot.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger2</artifactId>
  97. <version>${swagger2.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.github.xiaoymin</groupId>
  101. <artifactId>swagger-bootstrap-ui</artifactId>
  102. <version>${swagger2-bootstrap.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-lang3</artifactId>
  107. <version>${commons.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-codec</groupId>
  111. <artifactId>commons-codec</artifactId>
  112. <version>${commons.codec.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.code.gson</groupId>
  116. <artifactId>gson</artifactId>
  117. <version>${gson.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.google.guava</groupId>
  121. <artifactId>guava</artifactId>
  122. <version>${guava.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.poi</groupId>
  126. <artifactId>poi-ooxml</artifactId>
  127. <version>${poi.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi-ooxml-schemas</artifactId>
  132. <version>${poi.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.poi</groupId>
  136. <artifactId>poi</artifactId>
  137. <version>${poi.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-fileupload</groupId>
  141. <artifactId>commons-fileupload</artifactId>
  142. <version>${fileupload.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.aliyun.oss</groupId>
  146. <artifactId>aliyun-sdk-oss</artifactId>
  147. <version>${aliyun.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.alibaba</groupId>
  151. <artifactId>fastjson</artifactId>
  152. <version>${fastjson.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.fasterxml.jackson.core</groupId>
  156. <artifactId>jackson-core</artifactId>
  157. <version>${jackson.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.fasterxml.jackson.core</groupId>
  161. <artifactId>jackson-annotations</artifactId>
  162. <version>${jackson.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.fasterxml.jackson.core</groupId>
  166. <artifactId>jackson-databind</artifactId>
  167. <version>${jackson.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>cn.hutool</groupId>
  171. <artifactId>hutool-all</artifactId>
  172. <version>${hutool.version}</version>
  173. </dependency>
  174. <!-- aes PKCS7 -->
  175. <dependency>
  176. <groupId>org.bouncycastle</groupId>
  177. <artifactId>bcprov-jdk15on</artifactId>
  178. <version>${bcprov.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.jetbrains</groupId>
  182. <artifactId>annotations</artifactId>
  183. <version>${jetbrains.version}</version>
  184. <scope>compile</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>commons-io</groupId>
  188. <artifactId>commons-io</artifactId>
  189. <version>${commons-io.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.httpcomponents</groupId>
  193. <artifactId>httpclient</artifactId>
  194. <version>${httpclient.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>io.netty</groupId>
  198. <artifactId>netty-all</artifactId>
  199. <version>${netty-all.version}</version>
  200. </dependency>
  201. <!--quartz-->
  202. <dependency>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-starter-quartz</artifactId>
  205. <version>${spring-boot.version}</version>
  206. </dependency>
  207. </dependencies>
  208. </dependencyManagement>
  209. <dependencies>
  210. <!-- 默认依赖测试JAR -->
  211. <dependency>
  212. <groupId>org.springframework.boot</groupId>
  213. <artifactId>spring-boot-starter-test</artifactId>
  214. <version>${spring-boot.version}</version>
  215. <scope>test</scope>
  216. </dependency>
  217. </dependencies>
  218. <build>
  219. <plugins>
  220. <plugin>
  221. <groupId>org.apache.maven.plugins</groupId>
  222. <artifactId>maven-surefire-plugin</artifactId>
  223. <configuration>
  224. <skip>true</skip>
  225. <skipTests>true</skipTests>
  226. </configuration>
  227. </plugin>
  228. <plugin>
  229. <groupId>org.codehaus.mojo</groupId>
  230. <artifactId>versions-maven-plugin</artifactId>
  231. <version>${version-plugin.version}</version>
  232. <configuration>
  233. <generateBackupPoms>false</generateBackupPoms>
  234. </configuration>
  235. </plugin>
  236. </plugins>
  237. </build>
  238. </project>