Skip to main content

Quarkus Version Compatibility

Each version of the Operaton Engine Quarkus Extension is bound to a specific version of Operaton and Quarkus. Only these default combinations are recommended (and supported) by Operaton.

Operaton versionQuarkus version
1.0.03.28.3
1.0.13.28.5
1.0.23.28.5
1.0.33.28.5
1.1.03.30.8
1.1.13.30.8
1.1.23.30.8
1.1.33.30.8
2.0.03.32.0
2.1.03.33.1 (LTS)
2.1.13.33.2 (LTS)

In case a certain Quarkus version has a bug, you can override the existing Quarkus version by adding the following inside your pom.xml. Note that this new Operaton/Quarkus version combination should also be supported by Operaton.

<dependencyManagement>
<dependencies>
...
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.framework.version}</version><!-- set correct version here -->
<type>pom</type>
<scope>import</scope>
</dependency>
...
</dependencies>
</dependencyManagement>