Quarkus Version Compatibility

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

Fluxnova version Quarkus version
1.0.x 3.15.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 Fluxnova/Quarkus version combination should also be supported by Fluxnova.

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

On this Page: