Quarkus Version Compatibility

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

EximeeBPMS versionQuarkus version
1.0.03.20.x
1.1.03.27.x
1.2.03.28.x
1.3.03.28.x
1.3.1-ee (Enterprise Edition)3.36.x

See the Tech Stack matrix for the exact patch versions and the full history, including intermediate Enterprise Edition releases.

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 EximeeBPMS/Quarkus version combination should also be supported by EximeeBPMS.

<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>