If new versions of these 3 dependencies are needed by WildFly core, it can be upgraded in the new test BOM.
For now, it contains 3 dependencies that are used for testing in WildFly core and are used for production in WildFly,
but I think it can include any test dependencies used by WildFly core in the future. An side effect is that for any module
that depends on the new test dependency, it needs to add the following to the moule's pom:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-core-testbom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>