Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 31, 2023
1 parent 84052f3 commit a38c46b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,11 @@ private void renderSectionDependencyFileDetails() {
+ " and won't be listed in dependency files details.");
continue;
}
if (SummaryTableRowOrder.fromScope(artifact.getScope()) == null) {
log.warn("Artifact " + artifact.getId() + " has invalid scope"
+ " and won't be listed in dependency files details.");
continue;
}

File artifactFile = dependencies.getFile(artifact);

Expand Down

1 comment on commit a38c46b

@belingueres
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Please sign in to comment.