This page provides the most commonly used Apache Maven coordinates for ASEE Flow, with artifacts available on Maven Central.
BOM (Bill of Materials)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bom</artifactId>
<version>7.24.0</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
Use the BOM! Import the BOM if you use multiple ASEE Flow projects to ensure version compatibility.
Process engine
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine</artifactId>
</dependency>
Process engine Spring integration
For Spring Framework 5:
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-spring</artifactId>
</dependency>
For Spring Framework 6:
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-spring-6</artifactId>
</dependency>
Process engine CDI integration
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-cdi</artifactId>
</dependency>
DMN engine BOM
Enables standalone DMN engine usage without BPMN engine dependencies.
<dependencyManagement>
<dependency>
<groupId>org.camunda.bpm.dmn</groupId>
<artifactId>camunda-engine-dmn-bom</artifactId>
<version>7.24.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencyManagement>
DMN engine
<dependency>
<groupId>org.camunda.bpm.dmn</groupId>
<artifactId>camunda-engine-dmn</artifactId>
</dependency>
Process application EJB client
<dependency>
<groupId>org.camunda.bpm.javaee</groupId>
<artifactId>camunda-ejb-client</artifactId>
</dependency>
Artifact storage
ASEE Flow uses JFrog Artifactory for artifact delivery, with data stored in Amazon S3.
<repositories>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<url>https://artifacts.camunda.com/artifactory/public/</url>
</repository>
</repositories>
Browse artifacts
You can browse the published artifacts at https://artifacts.camunda.com/ui/native/camunda-bpm.
Known issue: downloading artifacts with cURL
Since artifacts are hosted in AWS S3, add the -L (or --location) option to follow redirects:
curl -LO https://artifacts.camunda.com/artifactory/camunda-bpm/org/camunda/bpm/camunda-engine-rest/7.24.0/camunda-engine-rest-7.24.0.war
Other modules