Release Notes / Version 11.2310
Table Of ContentsUpdate: JUnit 5, Mockito, PowerMock
We updated the following test libraries:
JUnit BOM to 5.8.1 including:
JUnit 5 (Jupiter) to 5.8.1
JUnit Platform to 1.8.1
Mockito to 3.12.4
PowerMock to 2.0.9
(CMS-20026)
Prevented creation of empty JAR files
The maven-jar-plugin is now configured with
skipIfEmpty=true
in all parent POMs. This prevents
build failures or the need to add dummy resources for modules that
don't contain any runtime sources or resources - e.g. those that only
contain tests. Please note that
installation and deployment must be skipped individually in its
pom.xml when such a module is added:
<properties> <maven.deploy.skip>true</maven.deploy.skip> <maven.install.skip>true</maven.install.skip> </properties>
(CMS-19388)