copy constructor needs to copy artifact reference

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@220068 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-07-21 13:40:20 +00:00
parent 5b63961d02
commit edbc07c3fb
1 changed files with 3 additions and 0 deletions

View File

@ -146,6 +146,9 @@ public class MavenProject
this.profileProperties = new Properties( project.profileProperties );
this.model = ModelUtils.cloneModel( project.model );
// TODO: need to clone this too?
this.artifact = project.artifact;
}
// ----------------------------------------------------------------------