confirm - 验证一些新需求的技术可行性

This commit is contained in:
wangli 2024-10-18 11:07:08 +08:00
parent 28d2495c41
commit bad28de080
3 changed files with 34 additions and 2 deletions

View File

@ -188,6 +188,7 @@
<module>workflow-engine-api</module>
<module>workflow-engine-axzo-ext</module>
<module>workflow-engine-common</module>
<module>workflow-engine-form</module>
<module>workflow-engine-core</module>
<module>workflow-engine-elasticsearch</module>
<module>workflow-engine-server</module>

View File

@ -60,11 +60,11 @@
</dependency>
<!-- 引入 Form 引擎(基于 Flowable) -->
<dependency>
<!--<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-spring-configurator</artifactId>
<version>${flowable.version}</version>
</dependency>
</dependency>-->
<dependency>
<groupId>org.flowable</groupId>

View File

@ -0,0 +1,31 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.axzo.workflow</groupId>
<artifactId>workflow-engine</artifactId>
<version>${revision}</version>
</parent>
<artifactId>workflow-engine-form</artifactId>
<packaging>jar</packaging>
<name>Workflow Engine Form</name>
<properties>
<flowable.version>6.7.2</flowable.version>
</properties>
<dependencies>
<!-- 引入 BPMN 引擎 -->
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-basic</artifactId>
<version>${flowable.version}</version>
</dependency>
<!-- 引入 Form 引擎(基于 Flowable) -->
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-spring-configurator</artifactId>
<version>${flowable.version}</version>
</dependency>
</dependencies>
</project>