2022-01-27 22:08:34 +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-27 22:08:34 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-module-bpm-base</artifactId>
|
|
|
|
|
|
|
|
<name>${artifactId}</name>
|
|
|
|
<description>
|
|
|
|
bpm-base 模块,实现公用的工作流的逻辑,提供给 bpm-activiti 和 bpm-flowable 复用
|
|
|
|
</description>
|
2022-01-27 22:08:34 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-module-bpm-api</artifactId>
|
|
|
|
<version>${revision}</version>
|
2022-01-27 22:08:34 +08:00
|
|
|
</dependency>
|
2022-01-31 22:55:48 +08:00
|
|
|
|
|
|
|
<!-- Web 相关 -->
|
2022-01-27 22:08:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-spring-boot-starter-web</artifactId>
|
2022-01-27 22:08:34 +08:00
|
|
|
</dependency>
|
2022-01-31 22:55:48 +08:00
|
|
|
|
2022-01-27 22:08:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
2022-01-27 22:08:34 +08:00
|
|
|
</dependency>
|
2022-01-31 22:55:48 +08:00
|
|
|
|
|
|
|
<!-- DB 相关 -->
|
2022-01-27 22:08:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-01-31 22:55:48 +08:00
|
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
2022-01-27 22:08:34 +08:00
|
|
|
</dependency>
|
2022-01-31 22:55:48 +08:00
|
|
|
|
|
|
|
<!-- Test 测试相关 -->
|
2022-01-27 22:08:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-01-31 22:55:48 +08:00
|
|
|
</project>
|