[ https://jira.codehaus.org/browse/MNG-3619?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Michael Osipov updated MNG-3619: -------------------------------- Affects Version/s: (was: 2.2.x (to be reviewed)) > 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 2 & 3 > Issue Type: Bug > Components: POM > Reporter: Dennis Lundberg > Fix For: 3.x / Backlog > > > 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)