pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <parent>
  6. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-modules</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>jar</packaging>
  13. <artifactId>ruoyi-workflow</artifactId>
  14. <description>
  15. 工作流模块
  16. </description>
  17. <dependencies>
  18. <!--引入flowable依赖-->
  19. <dependency>
  20. <groupId>org.flowable</groupId>
  21. <artifactId>flowable-spring-boot-autoconfigure</artifactId>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>org.flowable</groupId>
  25. <artifactId>flowable-spring-security</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.flowable</groupId>
  31. <artifactId>flowable-spring-configurator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.flowable</groupId>
  35. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  36. </dependency>
  37. <!-- 绘制flowable流程图 -->
  38. <dependency>
  39. <groupId>org.flowable</groupId>
  40. <artifactId>flowable-image-generator</artifactId>
  41. </dependency>
  42. <!-- flowable json 转换 -->
  43. <dependency>
  44. <groupId>org.flowable</groupId>
  45. <artifactId>flowable-json-converter</artifactId>
  46. <version>6.8.0</version>
  47. </dependency>
  48. <!-- svg转png图片工具-->
  49. <dependency>
  50. <groupId>org.apache.xmlgraphics</groupId>
  51. <artifactId>batik-all</artifactId>
  52. <version>1.10</version>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>xalan</groupId>
  56. <artifactId>xalan</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <!--系统模块-->
  61. <dependency>
  62. <groupId>org.dromara</groupId>
  63. <artifactId>ruoyi-system</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.dromara</groupId>
  67. <artifactId>ruoyi-common-websocket</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.dromara</groupId>
  71. <artifactId>ruoyi-common-mail</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.dromara</groupId>
  75. <artifactId>ruoyi-common-sms</artifactId>
  76. </dependency>
  77. </dependencies>
  78. </project>