pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <parent>
  7. <groupId>com.va.shWasher</groupId>
  8. <artifactId>sw-modules</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>sw-workflow</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>工作流模块</description>
  14. <dependencies>
  15. <!--引入flowable依赖-->
  16. <dependency>
  17. <groupId>org.flowable</groupId>
  18. <artifactId>flowable-spring-boot-autoconfigure</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>org.flowable</groupId>
  22. <artifactId>flowable-spring-security</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.flowable</groupId>
  28. <artifactId>flowable-spring-configurator</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.flowable</groupId>
  32. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  33. </dependency>
  34. <!-- 绘制flowable流程图 -->
  35. <dependency>
  36. <groupId>org.flowable</groupId>
  37. <artifactId>flowable-image-generator</artifactId>
  38. </dependency>
  39. <!-- flowable json 转换 -->
  40. <dependency>
  41. <groupId>org.flowable</groupId>
  42. <artifactId>flowable-json-converter</artifactId>
  43. <version>6.8.0</version>
  44. </dependency>
  45. <!-- svg转png图片工具-->
  46. <dependency>
  47. <groupId>org.apache.xmlgraphics</groupId>
  48. <artifactId>batik-all</artifactId>
  49. <version>1.17</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>xalan</groupId>
  53. <artifactId>xalan</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.va.shWasher</groupId>
  59. <artifactId>sw-common-websocket</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.va.shWasher</groupId>
  63. <artifactId>sw-common-mail</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.va.shWasher</groupId>
  67. <artifactId>sw-common-sms</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.va.shWasher</groupId>
  71. <artifactId>sw-common-web</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.va.shWasher</groupId>
  75. <artifactId>sw-common-mybatis</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.va.shWasher</groupId>
  79. <artifactId>sw-common-log</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.va.shWasher</groupId>
  83. <artifactId>sw-common-idempotent</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.va.shWasher</groupId>
  87. <artifactId>sw-common-excel</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.va.shWasher</groupId>
  91. <artifactId>sw-common-translation</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.va.shWasher</groupId>
  95. <artifactId>sw-common-tenant</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.va.shWasher</groupId>
  99. <artifactId>sw-common-security</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.va.shWasher</groupId>
  103. <artifactId>sw-common-sse</artifactId>
  104. </dependency>
  105. </dependencies>
  106. </project>