我项目中使用的是
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-bpmn-layout</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-process</artifactId>
<version>7.0.0</version>
<exclusions>
<!--排除mybatis依赖-->
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
</dependency>
通过访问虚谷官网数据库
https://github.com/Xugu-Open-Source/flowable-engine
点击Releases 下载你需要的版本

删除本地maven仓库中flowable-spring-boot-starter-process对应的版本
下载之后打开解压文件打开scripts目录执行
bash build-all.sh
- 需要连接外网
执行完成之后
修改pom文件
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-bpmn-layout</artifactId>
<version>${flowable.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-process</artifactId>
<version>${flowable.version}</version>
<exclusions>
<!--排除mybatis依赖-->
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
<exclusion>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>4.20.0-xugu</version>
</dependency>

相关资源下载
相关maven导入命令
mvn install:install-file -DgroupId=org.liquibase -DartifactId=liquibase-core -Dversion=4.20.0-xugu -Dpackaging=jar -Dfile=liquibase-core-4.20.0-xugu.jar
mvn install:install-file -DgroupId=org.flowable -DartifactId=flowable-spring-boot-starter-process -Dversion=7.0.0 -Dpackaging=jar -Dfile=flowable-spring-boot-starter-process-7.0.0.jar
参考
1292

被折叠的 条评论
为什么被折叠?



