Skip to content

bpm-crafters/process-engine-adapters-camunda-8

Repository files navigation

Process Engine Adapter Camunda 8

incubating Development branches Maven Central Version Camunda Platform 8

Purpose of the library

This library provides an adapter implementation of Process Engine API for Camunda 8 process engine.

Compatibility

Adapter-8 Version Camunda 8 Version API Version
2026.04.1 8.8.21 1.5
2026.02.2 8.8.14 1.5
2026.01.1 8.8.0 1.5
2025.11.1 8.8.0 1.4
2025.05.2 8.7.3 1.2
2025.05.1 8.7.2 1.1
2025.04.1 8.6.12 1.0

📚 Documentation

The documentation can be found here or in its respective repository.

Usage

If you want to start usage, please add the following dependency to your Maven project:

<dependency>
  <groupId>dev.bpm-crafters.process-engine-adapters</groupId>
  <artifactId>process-engine-adapters-camunda-platform-c8-embedded-spring-boot-starter</artifactId>
  <version>${process-engine-adapter-camunda-platform-c8.version}</version>
</dependency>

Anatomy

The library contains of the following Maven modules:

  • process-engine-adapters-camunda-platform-c8-embedded-core: Camunda 8 Platform Embedded Adapter implementation
  • process-engine-adapters-camunda-platform-c8-embedded-spring-boot-starter: Camunda 8 Platform Embedded Adapter Spring Boot Starter
  • process-engine-adapter-camunda-platform-c8-bom: Maven BOM with providing dependencies and versions

and provide other required dependencies:

  • camunda-spring-boot-starter

If you want to rely on versions we used during creation of this library, you may want to import the BOM:

<dependency>
  <groupId>dev.bpm-crafters.process-engine-adapters</groupId>
  <artifactId>process-engine-adapter-camunda-platform-c8-bom</artifactId>
  <version>${process-engine-adapter-camunda-platform-c8.version}</version>
  <scope>import</scope>
  <type>pom</type>
</dependency>