Skip to content

Migration Guide 2.8

Guillaume Smet edited this page Jan 28, 2022 · 21 revisions

Assertj moved out of the BOM

We had frequent problems with assertj binary compatibility (running tests compiled with an older version didn't work well with the version enforced in the BOM) so we decided to move Assertj outside of the Quarkus BOM.

That means you will have to define the version of Assertj in your own POM:

<dependency>
    <groupId>org.assertj</groupId>
    <artifactId>assertj-core</artifactId>
    <version>3.22.0</version>
</dependency>

Migration guides

Current version


LTS versions


Next version in main


Clone this wiki locally