flowable-spring-boot-starter版本
时间: 2023-07-29 20:13:14 浏览: 90
jsf-spring-boot-starter-2.2.6.zip
Flowable Spring Boot Starter 的版本号可以根据你的具体需求进行选择和配置。目前 Flowable Spring Boot Starter 的最新版本是 6.7.0,你可以在 Maven 或 Gradle 的依赖配置中指定这个版本号来引用该版本的 Starter。
例如,在 Maven 中可以这样配置依赖:
```xml
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>6.7.0</version>
</dependency>
```
在 Gradle 中可以这样配置依赖:
```groovy
implementation 'org.flowable:flowable-spring-boot-starter:6.7.0'
```
请注意,版本号可能会随着时间的推移而更新,所以建议查看 Flowable 的官方文档或者 Maven Central 上的最新版本号,以确保使用最新的稳定版本。
阅读全文