We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45f47e commit 12fa5d0Copy full SHA for 12fa5d0
ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/DynamicPluginProjectReferences.java
@@ -47,6 +47,7 @@ public List<IProject> getDependentProjects(IBuildConfiguration buildConfiguratio
47
return ClasspathComputer.collectBuildRelevantDependencies(Set.of(bundle)).stream()
48
.map(b -> (org.osgi.resource.Resource) b) //
49
.filter(dependency -> dependency != bundle).map(PluginRegistry::findModel)
50
+ .filter(Objects::nonNull)
51
.map(IPluginModelBase::getUnderlyingResource).filter(Objects::nonNull)
52
.map(IResource::getProject).distinct().toList();
53
}
0 commit comments