Skip to content

Commit

Permalink
Gather extra IUs from all reactor projects
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Dec 5, 2023
1 parent 0aa91d4 commit a93add0
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,10 @@ public P2TargetPlatform createTargetPlatform(TargetPlatformConfigurationStub tpC
return Optional.empty();
}).ifPresent(externalUIs::add);
}
//add p2.inf items...
gatherP2InfUnits(project, externalUIs);
//add p2.inf extra units from all projects...
for (ReactorProject reactorProject : reactorProjects) {
gatherP2InfUnits(reactorProject, externalUIs);
}

Map<IInstallableUnit, ReactorProjectIdentities> reactorProjectUIs = getPreliminaryReactorProjectUIs(
reactorProjects);
Expand Down

0 comments on commit a93add0

Please sign in to comment.