pom.xml 1.0 KB

123456789101112131415161718192021222324252627282930
  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>cn.iocoder.boot</groupId>
  7. <artifactId>yudao-module-bpm</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-bpm-impl-flowable</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>
  14. bpm-flowable 模块,基于 Flowable 6 实现工作流
  15. </description>
  16. <dependencies>
  17. <!-- 工作流相关 -->
  18. <dependency>
  19. <groupId>org.flowable</groupId>
  20. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.flowable</groupId>
  24. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  25. </dependency>
  26. </dependencies>
  27. </project>