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 version | Quarkus version |
|---|---|
| 1.0.0 | 3.28.3 |
| 1.0.1 | 3.28.5 |
| 1.0.2 | 3.28.5 |
| 1.0.3 | 3.28.5 |
| 1.1.0 | 3.30.8 |
| 1.1.1 | 3.30.8 |
| 1.1.2 | 3.30.8 |
| 1.1.3 | 3.30.8 |
| 2.0.0 | 3.32.0 |
| 2.1.0 | 3.33.1 (LTS) |
| 2.1.1 | 3.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>