SpringBoot整合activiti5.22.0-项目搭建

spring boot 要引入activiti 5.22.0,使用下面的方法是正确的,其他资料有的是错的

 

一、新建ruoyi-activiti5模块,pom.xml如下:

<?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>
        <artifactId>ruoyi</artifactId>
        <groupId>com.ruoyi</groupId>
        <version>3.2.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>ruoyi-activiti5</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>

        <activiti.version>5.22.0</activiti.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-spring-boot-starter-basic</artifactId>
            <version>${activiti.version}</version>
        </dependency>
    </dependencies>

</project>

 

参考资料:

https://www.iteye.com/blog/allen-shen-2425024

https://blog.csdn.net/m0_37607945/article/details/115227924

https://blog.csdn.net/m0_37607945/article/details/115230724

https://www.cnblogs.com/chengxuxiaoyuan/p/13699256.html

https://blog.csdn.net/x18094/article/details/122145225

posted @ 2022-05-11 15:24  jamstack  阅读(350)  评论(0编辑  收藏  举报