A Super BOM aligned with both Quarkus and Spring Boot BOMs — pick a single set of third‑party versions that works with either framework.
This BOM defines the lowest common denominator for third‑party dependency versions used across fuin.org libraries.
By importing it, you can:
- Build libraries that work with Quarkus and Spring Boot out of the box
- Avoid clashes between transitive dependency versions
- Stay aligned with the versions that both frameworks ship with
See CHANGELOG.md for the exact Quarkus and Spring Boot BOM revisions currently aligned.
Import the BOM in your project's dependencyManagement section.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.fuin</groupId>
<artifactId>bom</artifactId>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>