|
@@ -3,33 +3,46 @@
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<parent>
|
|
|
- <artifactId>yudao-module-bpm-core-service</artifactId>
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
+ <artifactId>yudao-module-bpm</artifactId>
|
|
|
<version>${revision}</version>
|
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
+ <artifactId>yudao-module-bpm-base</artifactId>
|
|
|
+
|
|
|
+ <name>${artifactId}</name>
|
|
|
+ <description>
|
|
|
+ bpm-base 模块,实现公用的工作流的逻辑,提供给 bpm-activiti 和 bpm-flowable 复用
|
|
|
+ </description>
|
|
|
|
|
|
- <artifactId>yudao-module-bpm-core-service-impl</artifactId>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
- <artifactId>yudao-spring-boot-starter-web</artifactId>
|
|
|
+ <artifactId>yudao-module-bpm-api</artifactId>
|
|
|
+ <version>${revision}</version>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- Web 相关 -->
|
|
|
<dependency>
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
- <artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
+ <artifactId>yudao-spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
+
|
|
|
<dependency>
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
- <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
|
+ <artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- DB 相关 -->
|
|
|
<dependency>
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
- <artifactId>yudao-module-bpm-core-service-api</artifactId>
|
|
|
+ <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- Test 测试相关 -->
|
|
|
<dependency>
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
-</project>
|
|
|
+</project>
|