mirror of https://github.com/apache/maven.git
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:
parent
14b9e9f347
commit
e0b2aea99e
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue