Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ protected ReportConfiguration getConfiguration() throws MojoExecutionException {
}
}
if (families != null || getDeprecatedConfigs().findAny().isPresent()) {
if (log.isEnabled(Log.Level.DEBUG)) {
if (log.isEnabled(Log.Level.DEBUG) && families != null) {
log.debug(format("%s license families loaded from pom", families.length));
}
Consumer<ILicenseFamily> logger = super.getLog().isDebugEnabled() ? l -> log.debug(format("Family: %s", l))
Expand Down
3 changes: 3 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ in order to be properly linked in site reports.
</release>
-->
<release version="1.0.0" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done">
<action issue="RAT-531" type="fix" dev="pottlinger" due-to="huangxiaoping">
Fix NPE that license families is null if licenses are defined manually, reported by huangxiaoping from Hudi.
</action>
<action issue="RAT-293" type="add" dev="pottlinger">
Add integration of RAT into SonarCloud analysis now that JDK8 is dropped and generate a test coverage report with JaCoCo.
</action>
Expand Down
Loading