pom.xml 3.2 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. <properties>
  13. <dom4j.version>2.1.3</dom4j.version>
  14. </properties>
  15. <name>${project.artifactId}</name>
  16. <description>
  17. bpm-base 模块,实现公用的工作流的逻辑,提供给 bpm-activiti 和 bpm-flowable 复用
  18. </description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.iocoder.boot</groupId>
  22. <artifactId>yudao-module-bpm-api</artifactId>
  23. <version>${revision}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.iocoder.boot</groupId>
  27. <artifactId>yudao-module-system-api</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <!-- 业务组件 -->
  31. <dependency>
  32. <groupId>cn.iocoder.boot</groupId>
  33. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.iocoder.boot</groupId>
  37. <artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.iocoder.boot</groupId>
  41. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  42. </dependency>
  43. <!-- Web 相关 -->
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-security</artifactId>
  51. </dependency>
  52. <!-- DB 相关 -->
  53. <dependency>
  54. <groupId>cn.iocoder.boot</groupId>
  55. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  56. </dependency>
  57. <!-- Test 测试相关 -->
  58. <dependency>
  59. <groupId>cn.iocoder.boot</groupId>
  60. <artifactId>yudao-spring-boot-starter-test</artifactId>
  61. </dependency>
  62. <!-- 工作流相关 -->
  63. <dependency>
  64. <groupId>cn.iocoder.boot</groupId>
  65. <artifactId>yudao-spring-boot-starter-flowable</artifactId>
  66. </dependency>
  67. <!--junit4-->
  68. <dependency>
  69. <groupId>junit</groupId>
  70. <artifactId>junit</artifactId>
  71. <version>4.11</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.h2database</groupId>
  76. <artifactId>h2</artifactId>
  77. <version>1.4.196</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  81. <!-- XML读写框架 -->
  82. <dependency>
  83. <groupId>org.dom4j</groupId>
  84. <artifactId>dom4j</artifactId>
  85. </dependency>
  86. </dependencies>
  87. </project>