in src/main/java/org/apache/sling/feature/r2f/impl/Bundle2ArtifactMapper.java [138:148]
private static URL getPomPropertiesURL(Collection<String> pomPropertiesResources, Bundle bundle) {
for (String pomPropertiesResource : pomPropertiesResources) {
URL pomPropertiesURL = bundle.getEntry(pomPropertiesResource);
if (pomPropertiesURL != null) {
return pomPropertiesURL;
}
}
return null;
}