Skip to content

Commit

Permalink
fix(validation): create issue on proper artifact
Browse files Browse the repository at this point in the history
Closes STUDIO-4551
  • Loading branch information
rbioteau committed Dec 2, 2024
1 parent 023855c commit 5215ae9
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 5215ae9

Please sign in to comment.