Hi,
I am using Flowable 6.6.0 and Spring Boot 2.3
I am using only BPMN engine.
Is there a way to disable other engines such as CMMN and DMMN engines?
Thanks,
Michel
Hi,
I am using Flowable 6.6.0 and Spring Boot 2.3
I am using only BPMN engine.
Is there a way to disable other engines such as CMMN and DMMN engines?
Thanks,
Michel
Hi @mykeul
If you use the following flowable spring boot starter then you get only the bpmn engine:
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-process</artifactId>
</dependency>
Regards,
Simon
Thanks @amporsim
I removed both:
flowable-spring-boot-starter-appflowable-spring-boot-starter-restI replaced them by
flowable-spring-boot-starter-processflowable-spring-boot-starter-process-restI still see flowable-cmmn-api for example brought by flowable-external-job-rest and flowable-spring-boot-starter-process-rest
But the engines are no longer in the dependencies.