2021-09-05 22:46:01 +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>
|
|
|
|
<artifactId>yudao-framework</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>yudao-spring-boot-starter-activiti</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2022-02-10 11:16:17 +08:00
|
|
|
<name>${project.artifactId}</name>
|
2021-09-05 22:46:01 +08:00
|
|
|
<description>Activiti 拓展</description>
|
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-07 00:35:12 +08:00
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-23 12:52:33 +08:00
|
|
|
<!-- DB 相关 -->
|
2021-09-05 22:46:01 +08:00
|
|
|
<dependency>
|
2022-01-23 12:52:33 +08:00
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
2021-09-05 22:46:01 +08:00
|
|
|
</dependency>
|
2021-10-13 23:43:03 +08:00
|
|
|
|
2022-01-23 13:02:31 +08:00
|
|
|
<!-- 工作流相关 -->
|
2021-09-05 22:46:01 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.activiti</groupId>
|
|
|
|
<artifactId>activiti-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2021-11-05 17:13:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.activiti</groupId>
|
|
|
|
<artifactId>activiti-image-generator</artifactId>
|
|
|
|
</dependency>
|
2022-01-07 00:35:12 +08:00
|
|
|
|
2021-09-05 22:46:01 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|