2022-01-26 15:57:38 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-module-bpm</artifactId>
|
2022-01-26 15:57:38 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-module-bpm-impl-flowable</artifactId>
|
2022-03-06 09:46:24 +08:00
|
|
|
<packaging>jar</packaging>
|
2022-01-31 22:55:48 +08:00
|
|
|
|
2022-02-10 11:16:17 +08:00
|
|
|
<name>${project.artifactId}</name>
|
2022-01-31 22:55:48 +08:00
|
|
|
<description>
|
|
|
|
bpm-flowable 模块,基于 Flowable 6 实现工作流
|
|
|
|
</description>
|
|
|
|
|
2022-01-26 15:57:38 +08:00
|
|
|
<dependencies>
|
2022-02-08 22:30:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-bpm-base</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2022-02-28 00:58:11 +08:00
|
|
|
|
2022-01-31 22:55:48 +08:00
|
|
|
<!-- 工作流相关 -->
|
2022-01-26 15:57:38 +08:00
|
|
|
<dependency>
|
2022-02-12 23:31:55 +08:00
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-flowable</artifactId>
|
2022-01-26 15:57:38 +08:00
|
|
|
</dependency>
|
2022-02-28 00:58:11 +08:00
|
|
|
|
|
|
|
<!-- Test 测试相关 -->
|
2022-02-17 23:59:05 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-02-28 00:58:11 +08:00
|
|
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2022-01-26 15:57:38 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-01-31 22:55:48 +08:00
|
|
|
</project>
|