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

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>