Skip to main content
Each version of the ASEE Flow Engine Quarkus Extension is bound to a specific version of ASEE Flow and Quarkus. Only these default combinations are recommended (and supported) by ASEE Flow.
ASEE Flow version Quarkus version
7.16.x, 7.17.x 2.1.x.Final
7.18.x 2.8.x.Final
7.19.x 2.16.x.Final
7.20.x 3.2.x.Final
7.21.x 3.8.x
7.22.x 3.15.x
7.23.x 3.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 ASEE Flow/Quarkus version combination should also be supported by ASEE Flow.
<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>