[ http://jira.codehaus.org/browse/MNG-4415?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Benjamin Bentmann closed MNG-4415. ---------------------------------- Resolution: Fixed Fix Version/s: 3.0-alpha-3 Assignee: Benjamin Bentmann Fixed in [r830809|http://svn.apache.org/viewvc?view=revision&revision=830809]. > [regression] Plugins are not properly ordered after merging with inherited > parent plugins > ----------------------------------------------------------------------------------------- > > Key: MNG-4415 > URL: http://jira.codehaus.org/browse/MNG-4415 > Project: Maven 2 > Issue Type: Bug > Components: Inheritance and Interpolation, Plugins and Lifecycle, POM > Affects Versions: 3.0-alpha-3 > Environment: windows > Reporter: Damian Bradicich > Assignee: Benjamin Bentmann > Fix For: 3.0-alpha-3 > > > For a parent POM with > {code:xml} > <build> > <plugins> > <plugin> > <groupId>org.apache.maven.its.plugins</groupId> > <artifactId>maven-it-plugin-b</artifactId> > <version>2.1-SNAPSHOT</version> > </plugin> > </plugins> > </build> > {code} > and a child POM with > {code:xml} > <build> > <plugins> > <plugin> > <groupId>org.apache.maven.its.plugins</groupId> > <artifactId>maven-it-plugin-a</artifactId> > <version>2.1-SNAPSHOT</version> > </plugin> > <plugin> > <groupId>org.apache.maven.its.plugins</groupId> > <artifactId>maven-it-plugin-b</artifactId> > <version>2.1-SNAPSHOT</version> > </plugin> > </plugins> > </build> > {code} > the child's effective model will end up like this in 3.x: > {code:xml} > <build> > <plugins> > <plugin> > <groupId>org.apache.maven.its.plugins</groupId> > <artifactId>maven-it-plugin-b</artifactId> > <version>2.1-SNAPSHOT</version> > </plugin> > <plugin> > <groupId>org.apache.maven.its.plugins</groupId> > <artifactId>maven-it-plugin-a</artifactId> > <version>2.1-SNAPSHOT</version> > </plugin> > </plugins> > </build> > {code} > i.e. plugin-a comes after plugin-b although it should be the order declared > in the POM. > In general, inheritance is expected to respect the following ordering during > plugin merging: > {noformat} > parent: X -> A -> B -> D -> E > child: Y -> A -> C -> D -> F > result: X -> Y -> A -> B -> C -> D -> E -> F > {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