Quarkus Version Compatibility

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

CIB seven version Quarkus version
7.22.x-cibseven 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 CIB seven/Quarkus version combination should also be supported by CIB seven.

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