pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fight</groupId>
  7. <artifactId>workflow</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <!-- spring依赖 -->
  14. <spring-boot.version>2.6.7</spring-boot.version>
  15. <spring-security-oauth2.version>2.5.2.RELEASE</spring-security-oauth2.version>
  16. <spring-plugin-core.version>2.0.0.RELEASE</spring-plugin-core.version>
  17. <!-- 数据库配置 -->
  18. <druid.version>1.2.9</druid.version>
  19. <mybatis-plus.vesion>3.5.1</mybatis-plus.vesion>
  20. <mybatis-plus.generator.vesion>3.4.1</mybatis-plus.generator.vesion>
  21. <mybatis-plus.dynamic.vesion>3.5.1</mybatis-plus.dynamic.vesion>
  22. <mysql.version>8.0.29</mysql.version>
  23. <dm18.version>1.8.0</dm18.version>
  24. <kingbase.version>2.0</kingbase.version>
  25. <postgre.version>42.2.23</postgre.version>
  26. <sqlserver.version>4.0</sqlserver.version>
  27. <oracle.version>21.5.0.0</oracle.version>
  28. <!-- 其他 -->
  29. <jna.version>5.11.0</jna.version>
  30. <commons-io.version>2.11.0</commons-io.version>
  31. <weixin.version>3.3.0</weixin.version>
  32. <thumbnailator.version>0.4.17</thumbnailator.version>
  33. <pinyin4j.version>2.5.1</pinyin4j.version>
  34. <zxing.version>3.5.0</zxing.version>
  35. <poi.version>4.1.2</poi.version>
  36. <fastjson.version>1.2.83</fastjson.version>
  37. <common-lang3.version>3.12.0</common-lang3.version>
  38. <common-pool.version>2.11.1</common-pool.version>
  39. <commons-text.version>1.9</commons-text.version>
  40. <poi.version>4.0.0</poi.version>
  41. <jackson.version>2.13.2</jackson.version>
  42. <itextpdf.version>5.5.13.3</itextpdf.version>
  43. <yitter-idgenerator.version>1.0.6</yitter-idgenerator.version>
  44. <itext-asian.version>5.2.0</itext-asian.version>
  45. <velocity.version>2.3</velocity.version>
  46. <oshi-core.version>5.4.0</oshi-core.version>
  47. <hutool-all.version>5.8.0</hutool-all.version>
  48. <guava.version>31.1-jre</guava.version>
  49. <nimbus-jose-jwt.version>9.22</nimbus-jose-jwt.version>
  50. <commons-fileupload.version>1.4</commons-fileupload.version>
  51. <antisamy.varsion>1.6.4</antisamy.varsion>
  52. <okhttp3.version>4.9.3</okhttp3.version>
  53. <lombok.version>1.18.20</lombok.version>
  54. <pagehelper.version>5.3.0</pagehelper.version>
  55. <tencentcloud-sdk-java>3.1.278</tencentcloud-sdk-java>
  56. <taobao-sdk-java>1.0</taobao-sdk-java>
  57. <dysmsapi.version>2.0.8</dysmsapi.version>
  58. <tea-openapi.version>0.2.4</tea-openapi.version>
  59. <minio.version>8.4.0</minio.version>
  60. <yozosign.version>3.0.1</yozosign.version>
  61. <flowable.version>6.7.2</flowable.version>
  62. <knife4j.version>4.1.0</knife4j.version>
  63. </properties>
  64. <dependencyManagement>
  65. <dependencies>
  66. <dependency>
  67. <groupId>io.minio</groupId>
  68. <artifactId>minio</artifactId>
  69. <version>${minio.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-fileupload</groupId>
  73. <artifactId>commons-fileupload</artifactId>
  74. <version>${commons-fileupload.version}</version>
  75. </dependency>
  76. <!-- SpringBoot 依赖配置 -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-dependencies</artifactId>
  80. <version>${spring-boot.version}</version>
  81. <type>pom</type>
  82. <scope>import</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.plugin</groupId>
  86. <artifactId>spring-plugin-core</artifactId>
  87. <version>${spring-plugin-core.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.github.xiaoymin</groupId>
  91. <artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
  92. <version>${knife4j.version}</version>
  93. </dependency>
  94. <!-- druid -->
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>druid</artifactId>
  98. <version>${druid.version}</version>
  99. </dependency>
  100. <!-- mybatisplus -->
  101. <dependency>
  102. <groupId>com.baomidou</groupId>
  103. <artifactId>mybatis-plus-boot-starter</artifactId>
  104. <version>${mybatis-plus.vesion}</version>
  105. </dependency>
  106. <!-- mysql -->
  107. <dependency>
  108. <groupId>mysql</groupId>
  109. <artifactId>mysql-connector-java</artifactId>
  110. <version>${mysql.version}</version>
  111. </dependency>
  112. <!-- JSON 解析器和生成器 -->
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>fastjson</artifactId>
  116. <version>${fastjson.version}</version>
  117. </dependency>
  118. <!-- commons-lang3 -->
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-lang3</artifactId>
  122. <version>${common-lang3.version}</version>
  123. </dependency>
  124. <!-- commons-text -->
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-text</artifactId>
  128. <version>${commons-text.version}</version>
  129. </dependency>
  130. <!-- 公共资源池 -->
  131. <dependency>
  132. <groupId>org.apache.commons</groupId>
  133. <artifactId>commons-pool2</artifactId>
  134. <version>${common-pool.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok</artifactId>
  139. <version>${lombok.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.fasterxml.jackson.core</groupId>
  143. <artifactId>jackson-core</artifactId>
  144. <version>${jackson.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.fasterxml.jackson.module</groupId>
  148. <artifactId>jackson-module-jaxb-annotations</artifactId>
  149. <version>${jackson.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.google.guava</groupId>
  153. <artifactId>guava</artifactId>
  154. <version>${guava.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>commons-io</groupId>
  158. <artifactId>commons-io</artifactId>
  159. <version>${commons-io.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>cn.hutool</groupId>
  163. <artifactId>hutool-all</artifactId>
  164. <version>${hutool-all.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>commons-fileupload</groupId>
  168. <artifactId>commons-fileupload</artifactId>
  169. <version>${commons-fileupload.version}</version>
  170. </dependency>
  171. <!-- okhttp -->
  172. <dependency>
  173. <groupId>com.squareup.okhttp3</groupId>
  174. <artifactId>okhttp</artifactId>
  175. <version>${okhttp3.version}</version>
  176. </dependency>
  177. <!--反之XSS注入-->
  178. <dependency>
  179. <groupId>org.owasp.antisamy</groupId>
  180. <artifactId>antisamy</artifactId>
  181. <version>${antisamy.varsion}</version>
  182. <exclusions>
  183. <exclusion>
  184. <groupId>org.slf4j</groupId>
  185. <artifactId>slf4j-simple</artifactId>
  186. </exclusion>
  187. </exclusions>
  188. </dependency>
  189. <!-- PageHelper -->
  190. <dependency>
  191. <groupId>com.github.pagehelper</groupId>
  192. <artifactId>pagehelper</artifactId>
  193. <version>${pagehelper.version}</version>
  194. </dependency>
  195. </dependencies>
  196. </dependencyManagement>
  197. <dependencies>
  198. <dependency>
  199. <groupId>net.dreamlu</groupId>
  200. <artifactId>mica-mqtt-client-spring-boot-starter</artifactId>
  201. <version>2.2.1</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.github.xiaoymin</groupId>
  205. <artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
  206. </dependency>
  207. <dependency>
  208. <groupId>io.minio</groupId>
  209. <artifactId>minio</artifactId>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.google.guava</groupId>
  213. <artifactId>guava</artifactId>
  214. </dependency>
  215. <dependency>
  216. <groupId>cn.hutool</groupId>
  217. <artifactId>hutool-all</artifactId>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.springframework</groupId>
  221. <artifactId>spring-web</artifactId>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework.boot</groupId>
  225. <artifactId>spring-boot-starter-data-redis</artifactId>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.springframework.boot</groupId>
  229. <artifactId>spring-boot-configuration-processor</artifactId>
  230. <optional>true</optional>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.commons</groupId>
  234. <artifactId>commons-pool2</artifactId>
  235. </dependency>
  236. <dependency>
  237. <groupId>com.fasterxml.jackson.core</groupId>
  238. <artifactId>jackson-core</artifactId>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.fasterxml.jackson.module</groupId>
  242. <artifactId>jackson-module-jaxb-annotations</artifactId>
  243. </dependency>
  244. <!-- <dependency>
  245. <groupId>io.springfox</groupId>
  246. <artifactId>springfox-boot-starter</artifactId>
  247. </dependency>-->
  248. <dependency>
  249. <groupId>org.apache.tomcat.embed</groupId>
  250. <artifactId>tomcat-embed-core</artifactId>
  251. </dependency>
  252. <dependency>
  253. <groupId>com.baomidou</groupId>
  254. <artifactId>mybatis-plus-boot-starter</artifactId>
  255. </dependency>
  256. <dependency>
  257. <groupId>com.alibaba</groupId>
  258. <artifactId>druid</artifactId>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.springframework</groupId>
  262. <artifactId>spring-webmvc</artifactId>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.hibernate.validator</groupId>
  266. <artifactId>hibernate-validator</artifactId>
  267. </dependency>
  268. <dependency>
  269. <groupId>commons-codec</groupId>
  270. <artifactId>commons-codec</artifactId>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.commons</groupId>
  274. <artifactId>commons-lang3</artifactId>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.apache.httpcomponents</groupId>
  278. <artifactId>httpclient</artifactId>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.apache.httpcomponents</groupId>
  282. <artifactId>httpmime</artifactId>
  283. </dependency>
  284. <!-- mysql -->
  285. <dependency>
  286. <groupId>mysql</groupId>
  287. <artifactId>mysql-connector-java</artifactId>
  288. <version>${mysql.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>commons-fileupload</groupId>
  292. <artifactId>commons-fileupload</artifactId>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.owasp.antisamy</groupId>
  296. <artifactId>antisamy</artifactId>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.github.pagehelper</groupId>
  300. <artifactId>pagehelper</artifactId>
  301. <exclusions>
  302. <exclusion>
  303. <groupId>com.github.jsqlparser</groupId>
  304. <artifactId>jsqlparser</artifactId>
  305. </exclusion>
  306. </exclusions>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.projectlombok</groupId>
  310. <artifactId>lombok</artifactId>
  311. </dependency>
  312. <dependency>
  313. <groupId>com.fasterxml.jackson.core</groupId>
  314. <artifactId>jackson-annotations</artifactId>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.alibaba</groupId>
  318. <artifactId>fastjson</artifactId>
  319. </dependency>
  320. <!-- flowable -->
  321. <dependency>
  322. <groupId>org.flowable</groupId>
  323. <artifactId>flowable-spring-boot-starter</artifactId>
  324. <version>${flowable.version}</version>
  325. <exclusions>
  326. <exclusion>
  327. <groupId>org.flowable</groupId>
  328. <artifactId>flowable-spring-boot-starter-app</artifactId>
  329. </exclusion>
  330. <exclusion>
  331. <groupId>org.flowable</groupId>
  332. <artifactId>flowable-form-spring-configurator</artifactId>
  333. </exclusion>
  334. <exclusion>
  335. <groupId>org.flowable</groupId>
  336. <artifactId>flowable-idm-spring-configurator</artifactId>
  337. </exclusion>
  338. <exclusion>
  339. <artifactId>mybatis</artifactId>
  340. <groupId>org.mybatis</groupId>
  341. </exclusion>
  342. </exclusions>
  343. </dependency>
  344. <dependency>
  345. <groupId>org.flowable</groupId>
  346. <artifactId>flowable-bpmn-model</artifactId>
  347. <version>${flowable.version}</version>
  348. <scope>compile</scope>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.flowable</groupId>
  352. <artifactId>flowable-json-converter</artifactId>
  353. <version>${flowable.version}</version>
  354. <scope>compile</scope>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.flowable</groupId>
  358. <artifactId>flowable-bpmn-converter</artifactId>
  359. <version>${flowable.version}</version>
  360. <scope>compile</scope>
  361. </dependency>
  362. <!--activiti modeler 5.22 end-->
  363. <!-- 自动布局jar 包-->
  364. <dependency>
  365. <groupId>org.flowable</groupId>
  366. <artifactId>flowable-bpmn-layout</artifactId>
  367. <version>${flowable.version}</version>
  368. </dependency>
  369. </dependencies>
  370. <build>
  371. <plugins>
  372. <plugin>
  373. <groupId>org.apache.maven.plugins</groupId>
  374. <artifactId>maven-compiler-plugin</artifactId>
  375. <version>3.8.0</version>
  376. <configuration>
  377. <source>${java.version}</source>
  378. <target>${java.version}</target>
  379. <encoding>${project.build.sourceEncoding}</encoding>
  380. </configuration>
  381. </plugin>
  382. <plugin>
  383. <groupId>org.springframework.boot</groupId>
  384. <artifactId>spring-boot-maven-plugin</artifactId>
  385. <version>${spring-boot.version}</version>
  386. <configuration>
  387. <mainClass>com.dingding.mid.DingDingAdminApplication</mainClass>
  388. <layout>ZIP</layout>
  389. </configuration>
  390. <executions>
  391. <execution>
  392. <goals>
  393. <goal>repackage</goal>
  394. </goals>
  395. </execution>
  396. </executions>
  397. </plugin>
  398. </plugins>
  399. </build>
  400. </project>