pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <artifactId>yudao</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-bpm</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. bpm 包下,业务流程管理(Business Process Management),我们放工作流的功能。
  16. 例如说:流程定义、表单配置、审核中心(我的申请、我的待办、我的已办)等等
  17. bpm 解释:https://baike.baidu.com/item/BPM/1933
  18. 工作流基于 Flowable 6 实现,分成流程定义、流程表单、流程实例、流程任务等功能模块。
  19. </description>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.iocoder.boot</groupId>
  23. <artifactId>yudao-module-system</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <!-- 业务组件 -->
  27. <dependency>
  28. <groupId>cn.iocoder.boot</groupId>
  29. <artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.iocoder.boot</groupId>
  33. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  34. </dependency>
  35. <!-- Web 相关 -->
  36. <dependency>
  37. <groupId>cn.iocoder.boot</groupId>
  38. <artifactId>yudao-spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.iocoder.boot</groupId>
  42. <artifactId>yudao-spring-boot-starter-security</artifactId>
  43. </dependency>
  44. <!-- DB 相关 -->
  45. <dependency>
  46. <groupId>cn.iocoder.boot</groupId>
  47. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  48. </dependency>
  49. <!-- Test 测试相关 -->
  50. <dependency>
  51. <groupId>cn.iocoder.boot</groupId>
  52. <artifactId>yudao-spring-boot-starter-test</artifactId>
  53. </dependency>
  54. <!-- 工具类相关 -->
  55. <dependency>
  56. <groupId>cn.iocoder.boot</groupId>
  57. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  58. </dependency>
  59. <!-- Flowable 工作流相关 -->
  60. <dependency>
  61. <groupId>org.flowable</groupId>
  62. <artifactId>flowable-spring-boot-starter-process</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.flowable</groupId>
  66. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>