[ https://issues.apache.org/jira/browse/MNG-6547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Robert Scholte closed MNG-6547. ------------------------------- Resolution: Not A Problem Assignee: Robert Scholte The {{Model}} is an internal representation of the {{pom.xml}}, where the order of different tags doesn't matter. It is not aware of the original order (and that's not required for the further process). Assuming that reading the pom to a Java model and writing it again to file would have the exactly same result is invalid, however effectly it still is the same. > MavenProject.writeModel(Writer writer) outputs an error-sorted pom.xml > ----------------------------------------------------------------------- > > Key: MNG-6547 > URL: https://issues.apache.org/jira/browse/MNG-6547 > Project: Maven > Issue Type: Bug > Components: core > Affects Versions: 3.5.0, 3.6.0 > Environment: java version "1.7.0_79" > Java(TM) SE Runtime Environment (build 1.7.0_79-b15) > Java HotSpot(TM) 64-Bit Server VM (build 24.79-b02, mixed mode) > Reporter: Bo Wang > Assignee: Robert Scholte > Priority: Major > Attachments: Rewriter.java, pom.xml > > > When I try to rewrite a _pom.xml_ to add a plugin configuration via > *MavenProject.write(Writer writer)*, the method outputs a wrong pom.xml, > which triggers error of > *com.google.code.sortpom:maven-sortpom-plugin:2.1.0:verify > (verify-sorted-pom).* > I diff the pom.xml files and find that the order of the two tags *<phase>* > and *<goals>* is changed, i.e.: > *The original section:* > <execution> > <id>generate-thrift</id> > *<goals>**...**</goals>* > *<phase>*generate-sources</phase>** > ... > </execution> > *The error output:* > <execution> > <id>generate-thrift</id> > *<phase>*generate-sources</phase>** > *<goals>**...**</goals>* > ... > </execution> > > The tested > _[pom.xml|https://github.com/apache/accumulo/blob/1.5.1/trace/pom.xml]_ is a > copy from > _[accumo-trace|https://github.com/apache/accumulo/tree/1.5.1/trace]_ v1.5.1. > The simple bug-trigger code example _[^Rewriter.java] and the tested > [^pom.xml]_ are attached. -- This message was sent by Atlassian JIRA (v7.6.3#76005)