Search code examples
javamavenactivitiflowable

Maven dependency not exist for flowable


Trying to find the java maven dependency of flowable, I found the maven repository of flowable here

enter image description here

When I am trying to search the org.flowable in maven dependency it not showing any.


Solution

  • For adding the flowable dependency in maven, only need to add:

    <dependency>
        <groupId>org.flowable</groupId>
        <artifactId>flowable-spring-boot-starter-rest</artifactId>
        <version>${flowable.version}</version>
    </dependency>
    

    This will download the dependency of the flowable.