[ 
https://jira.codehaus.org/browse/MNG-3619?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Osipov updated MNG-3619:
--------------------------------

    Fix Version/s:     (was: 3.x / Backlog)

> Dependency.equals(Object):boolean is missing for version 4.0.0 POMs
> -------------------------------------------------------------------
>
>                 Key: MNG-3619
>                 URL: https://jira.codehaus.org/browse/MNG-3619
>             Project: Maven
>          Issue Type: Bug
>          Components: POM
>            Reporter: Dennis Lundberg
>
> The modello file for the 2.0.x branch does not have a <codeSegment> for 4.0.0 
> POMs that implements equals(Object):boolean. Modello doesn't generate one 
> automatically either. Perhaps upgrading to a newer version of the modello 
> plugin will solve this.
> http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-model/src/main/mdo/maven.mdo?revision=659677&view=markup
> There is a <codeSegment> for 3.0.0 POMs only:
> {code}
>     /**
>      * @see java.lang.Object#equals(java.lang.Object)
>      */
>     public boolean equals( Object o )
>     {
>         if ( this == o )
>         {
>             return true;
>         }
>         if ( !( o instanceof Dependency ) )
>         {
>             return false;
>         }
>         Dependency d  = (Dependency) o;
>         return getId().equals( d.getId() );
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)

Reply via email to