You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org> on 2008/12/13 18:17:19 UTC

[jira] Created: (MNG-3899) Inheritance does not merge extensions with same gid and aid

Inheritance does not merge extensions with same gid and aid
-----------------------------------------------------------

                 Key: MNG-3899
                 URL: http://jira.codehaus.org/browse/MNG-3899
             Project: Maven 2
          Issue Type: Bug
          Components: Inheritance and Interpolation
    Affects Versions: 2.1.0-M1, 2.0.9
            Reporter: Benjamin Bentmann
            Priority: Minor


Parent POM snippet:
{code:xml}
<extensions>
  <extension>
    <groupId>org.apache.maven.wagon</groupId>
    <artifactId>wagon-webdav</artifactId>
    <version>1.0-beta-1</version>
  </extension>
</extensions>
{code}
Child POM snippet:
{code:xml}
<extensions>
  <extension>
    <groupId>org.apache.maven.wagon</groupId>
    <artifactId>wagon-webdav</artifactId>
    <version>1.0-beta-2</version>
  </extension>
</extensions>
{code}
Effective child POM:
{code:xml}
<extensions>
  <extension>
    <groupId>org.apache.maven.wagon</groupId>
    <artifactId>wagon-webdav</artifactId>
    <version>1.0-beta-2</version>
  </extension>
  <extension>
    <groupId>org.apache.maven.wagon</groupId>
    <artifactId>wagon-webdav</artifactId>
    <version>1.0-beta-1</version>
  </extension>
</extensions>
{code}
i.e. there is no conflict resolution and both versions of the extension are loaded.

-- 
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

        

[jira] Closed: (MNG-3899) Inheritance does not merge extensions with same gid and aid

Posted by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Bentmann closed MNG-3899.
----------------------------------

         Assignee: Benjamin Bentmann
       Resolution: Fixed
    Fix Version/s: 2.1.0-M2
                   2.0.11

Fixed in [r726244|http://svn.apache.org/viewvc?view=rev&revision=726244] and [r726247|http://svn.apache.org/viewvc?view=rev&revision=726247], respectively.

> Inheritance does not merge extensions with same gid and aid
> -----------------------------------------------------------
>
>                 Key: MNG-3899
>                 URL: http://jira.codehaus.org/browse/MNG-3899
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Inheritance and Interpolation
>    Affects Versions: 2.0.9, 2.1.0-M1
>            Reporter: Benjamin Bentmann
>            Assignee: Benjamin Bentmann
>            Priority: Minor
>             Fix For: 2.0.11, 2.1.0-M2
>
>
> Parent POM snippet:
> {code:xml}
> <extensions>
>   <extension>
>     <groupId>org.apache.maven.wagon</groupId>
>     <artifactId>wagon-webdav</artifactId>
>     <version>1.0-beta-1</version>
>   </extension>
> </extensions>
> {code}
> Child POM snippet:
> {code:xml}
> <extensions>
>   <extension>
>     <groupId>org.apache.maven.wagon</groupId>
>     <artifactId>wagon-webdav</artifactId>
>     <version>1.0-beta-2</version>
>   </extension>
> </extensions>
> {code}
> Effective child POM:
> {code:xml}
> <extensions>
>   <extension>
>     <groupId>org.apache.maven.wagon</groupId>
>     <artifactId>wagon-webdav</artifactId>
>     <version>1.0-beta-2</version>
>   </extension>
>   <extension>
>     <groupId>org.apache.maven.wagon</groupId>
>     <artifactId>wagon-webdav</artifactId>
>     <version>1.0-beta-1</version>
>   </extension>
> </extensions>
> {code}
> i.e. there is no conflict resolution and both versions of the extension are loaded.

-- 
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