PR: MNG-374

don't let the original plugin configuration get polluted during goal attainment

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@169485 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-05-10 15:35:26 +00:00
parent 14b9e9f347
commit e0b2aea99e
1 changed files with 7 additions and 0 deletions

View File

@ -847,6 +847,13 @@ public class MavenProject
}
}
}
if ( dom != null )
{
// make a copy so the original in the POM doesn't get messed with
dom = new Xpp3Dom( dom );
}
return dom;
}