pom.xml 17 KB

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