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 752f18b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;

Expand Down Expand Up @@ -264,8 +265,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 : Objects.requireNonNullElse(reactorProjects, List.<ReactorProject> of())) {
gatherP2InfUnits(reactorProject, externalUIs);
}

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

0 comments on commit 752f18b

Please sign in to comment.