pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-biz</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>
  14. bpm 包下,业务流程管理(Business Process Management),我们放工作流的功能,基于 Flowable 6 版本实现。
  15. 例如说:流程定义、表单配置、审核中心(我的申请、我的待办、我的已办)等等
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-infra-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-module-bpm-api</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-module-system-api</artifactId>
  31. <version>${revision}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-module-expense-api</artifactId>
  36. <version>${revision}</version>
  37. </dependency>
  38. <!-- <dependency>-->
  39. <!-- <groupId>cn.iocoder.boot</groupId>-->
  40. <!-- <artifactId>yudao-common</artifactId>-->
  41. <!-- </dependency>-->
  42. <!-- 业务组件 -->
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.iocoder.boot</groupId>
  49. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  50. </dependency>
  51. <!-- Web 相关 -->
  52. <dependency>
  53. <groupId>cn.iocoder.boot</groupId>
  54. <artifactId>yudao-spring-boot-starter-web</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.iocoder.boot</groupId>
  58. <artifactId>yudao-spring-boot-starter-security</artifactId>
  59. </dependency>
  60. <!-- DB 相关 -->
  61. <dependency>
  62. <groupId>cn.iocoder.boot</groupId>
  63. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  64. </dependency>
  65. <!-- Test 测试相关 -->
  66. <dependency>
  67. <groupId>cn.iocoder.boot</groupId>
  68. <artifactId>yudao-spring-boot-starter-test</artifactId>
  69. </dependency>
  70. <!-- 工具类相关 -->
  71. <dependency>
  72. <groupId>cn.iocoder.boot</groupId>
  73. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  74. </dependency>
  75. <!-- 工作流相关 -->
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-spring-boot-starter-flowable</artifactId>
  79. <version>2.1.0-jdk8-snapshot</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. </dependencies>
  83. </project>