Apache Maven Coordinates

This page lists the most commonly used Apache Maven Coordinates for Flowee BPMS.

Most Flowee BPMS artifacts are pushed to maven central.

Flowee BPMS BOM (Bill of Materials)

Community Edition

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>com.finture.bpm</groupId>
      <artifactId>flowee-bom</artifactId>
      <version>0.7.1</version>
      <scope>import</scope>
      <type>pom</type>
    </dependency>
  </dependencies>
</dependencyManagement>

Use the BOM!

Please import the Flowee BPMS BOM if you use multiple Flowee BPMS projects. The BOM defines versions for all Flowee BPMS projects. This way it is ensured that no incompatible versions are imported.

Flowee BPMS Engine

<dependency>
  <groupId>com.finture.bpm</groupId>
  <artifactId>flowee-engine</artifactId>
</dependency>

Flowee BPMS Engine Spring Integration

The flowee-engine Spring integration for Spring Framework 5:

<dependency>
  <groupId>com.finture.bpm</groupId>
  <artifactId>flowee-engine-spring</artifactId>
</dependency>

The flowee-engine Spring integration for Spring Framework 6:

<dependency>
  <groupId>com.finture.bpm</groupId>
  <artifactId>flowee-engine-spring-6</artifactId>
</dependency>

Flowee BPMS Engine CDI Integration

<dependency>
  <groupId>com.finture.bpm</groupId>
  <artifactId>flowee-engine-cdi</artifactId>
</dependency>

Flowee BPMS DMN Engine BOM (Bill of Materials)

This BOM allows to use the DMN engine standalone without the BPMN engine and the rest of the Flowee BPMS Platform.

<dependencyManagement>
  <dependency>
    <groupId>com.finture.bpm.dmn</groupId>
    <artifactId>flowee-engine-dmn-bom</artifactId>
    <version>7.23.0</version>
    <type>pom</type>
    <scope>import</scope>
  </dependency>
</dependencyManagement>

Flowee BPMS DMN

This dependency allows to use DMN engine standalone without the BPMN engine and the rest of the Flowee BPMS Platform. It is not needed when using flowee-engine because that already contains the DMN engine.

<dependency>
  <groupId>com.finture.bpm.dmn</groupId>
  <artifactId>camunda-engine-dmn</artifactId>
</dependency>

Process Application EJB Client

<dependency>
  <groupId>com.finture.bpm.javaee</groupId>
  <artifactId>flowee-ejb-client</artifactId>
</dependency>

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

//: # ()

On this Page: