Skip to content

Commit

Permalink
override dependencies in conflicts as part of projectDependencyReport
Browse files Browse the repository at this point in the history
  • Loading branch information
gs-gunjan authored Aug 7, 2023
1 parent 4c8f90c commit fa017d7
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ public void addConflict(String groupId, String artifactId, Set<String> versions)
this.getConflicts().add(new ProjectDependencyConflict(groupId, artifactId, versions));
}

public void removeConflict(ProjectDependencyConflict conflict)
{
conflicts.remove(conflict);
}

public List<ProjectDependencyConflict> getConflicts()
{
return conflicts;
Expand Down

0 comments on commit fa017d7

Please sign in to comment.