JUnit5 module still uses the default rider-core version (javax compatible), in order to use the Jakarta compatible version in JUnit5 module the user has to play with maven exclusions and explicitly add the rider-core with jakarta classifier dependency.
Provide Jakarta classifier for junit5 module so user can just declare rider-junit5:
<dependency>
<groupId>com.github.database-rider</groupId>
<artifactId>rider-junit5</artifactId>
<version>1.41.0</version>
<scope>test</scope>
<classifier>jakarta</classifier>
</dependency>