Skip to content

Commit

Permalink
fix(validation): create issue on proper artifact (#381)
Browse files Browse the repository at this point in the history
Closes STUDIO-4551
  • Loading branch information
rbioteau authored Dec 2, 2024
1 parent f1b6574 commit 2f8ac5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public boolean visit(DependencyNode node) {
});

return conflictingNodes.stream()
.map(node -> createIssue(node, project.getArtifact().getId()))
.map(node -> createIssue(node, projectBuildingRequest.getProject().getArtifact().getId()))
.collect(Collectors.toList());
} catch (DependencyGraphBuilderException e) {
throw new MojoExecutionException("Failed to build dependency graph", e);
Expand Down

0 comments on commit 2f8ac5a

Please sign in to comment.