Spring Boot Version Compatibility
Each version of the Camunda Spring Boot Starter is bound to a specific version of Camunda Platform and Spring Boot. Only these default combinations are recommended (and supported) by Camunda. Other combinations must be thoroughly tested before being used in production.
| Spring Boot Starter version | Camunda Platform version | Spring Boot version |
|---|---|---|
| 1.0.0* | 7.3.0 | 1.2.5.RELEASE |
| 1.1.0* | 7.4.0 | 1.3.1.RELEASE |
| 1.2.0* | 7.5.0 | 1.3.5.RELEASE |
| 1.2.1* | 7.5.0 | 1.3.6.RELEASE |
| 1.3.0* | 7.5.0 | 1.3.7.RELEASE |
| 2.0.0** | 7.6.0 | 1.4.2.RELEASE |
| 2.1.x** | 7.6.0 | 1.5.3.RELEASE |
| 2.2.x** | 7.7.0 | 1.5.6.RELEASE |
| 2.3.x | 7.8.0 | 1.5.8.RELEASE |
| 3.0.x | 7.9.0 | 2.0.x.RELEASE |
| 3.1.x | 7.10.0 | 2.0.x.RELEASE |
| 3.2.x | 7.10.0 | 2.1.x.RELEASE |
| 3.3.1+ | 7.11.0 | 2.1.x.RELEASE |
| 3.4.x | 7.12.0 | 2.2.x.RELEASE |
* For these versions, use the following Maven coordinates:
<dependency>
<groupId>org.camunda.bpm.extension</groupId>
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
<version>1.x</version> <!-- set correct version here -->
</dependency>
** For these versions, use the following Maven coordinates:
<dependency>
<groupId>org.camunda.bpm.extension.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
<version>2.x</version> <!-- set correct version here -->
</dependency>