1

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.

Ravindra Gupta
  • 1,256
  • 12
  • 42
  • well, it's said that the index downloads are disabled, so it could be the case that i cannot contact any repository to index the artifacts – Toan Lu Jul 01 '19 at 09:52

1 Answers1

2

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.

Ravindra Gupta
  • 1,256
  • 12
  • 42