<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>
|
|
<artifactId>flowable</artifactId>
|
|
<parent>
|
<artifactId>project-management</artifactId>
|
<groupId>com.ycl</groupId>
|
<version>1.0.0</version>
|
</parent>
|
|
<name>flowable</name>
|
|
|
<dependencies>
|
|
<!-- flowable -->
|
<dependency>
|
<groupId>org.flowable</groupId>
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.flowable</groupId>
|
<artifactId>flowable-spring-boot-starter-process</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.flowable</groupId>
|
<artifactId>flowable-json-converter</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.flowable</groupId>
|
<artifactId>flowable-bpmn-layout</artifactId>
|
</dependency>
|
|
<!-- 业务模块 -->
|
<dependency>
|
<groupId>com.ycl</groupId>
|
<artifactId>system</artifactId>
|
</dependency>
|
|
<!--el表达式计算-->
|
<dependency>
|
<groupId>com.googlecode.aviator</groupId>
|
<artifactId>aviator</artifactId>
|
<version>5.3.3</version>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|