in src/main/java/org/apache/tomcat/jakartaee/ManifestConverter.java [112:118]
private boolean updateValues(Manifest manifest, EESpecProfile profile) {
boolean converted = updateValues(manifest.getMainAttributes(), profile);
for (Attributes attributes : manifest.getEntries().values()) {
converted = converted | updateValues(attributes, profile);
}
return converted;
}