elharo opened a new issue, #384:
URL: https://github.com/apache/maven-help-plugin/issues/384
In src/main/java/org/apache/maven/plugins/help/EffectivePomMojo.java:210-213:
private static void cleanModel(Model pom) {
Properties properties = new SortedProperties();
properties.putAll(pom.getProperties());
pom.setProperties(properties);
}
Called from writeEffectivePom() at line 182 on project.getModel(). This
permanently replaces the project Properties with a SortedProperties instance,
altering property iteration order for the remainder of the build. This is a
data corruption side effect in what should be a read-only display operation.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]