Order of collection-valued plugin configuration parameters is reversed
----------------------------------------------------------------------

                 Key: MNG-3827
                 URL: http://jira.codehaus.org/browse/MNG-3827
             Project: Maven 2
          Issue Type: Bug
          Components: Plugins and Lifecycle, POM
    Affects Versions: 3.0-alpha-1
            Reporter: Benjamin Bentmann


For instance, the POM snippet
{code:xml}
<plugin>
  <artifactId>maven-antrun-plugin</artifactId>
  <version>1.3</version>
  <configuration>
    <tasks>
      <echo>one</echo>
      <echo>two</echo>
      <echo>three</echo>
    </tasks>
  </configuration>
</plugin>
{code}
yields the output
{noformat}
[INFO] [antrun:run]
[INFO] Executing tasks
     [echo] three
     [echo] two
     [echo] one
{noformat}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to