o Code from netbeans integration that will write out changes to a model and preserve the existing structure for the most part.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@493824 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-01-07 19:53:06 +00:00
parent ed381aec0d
commit a966656f38
1 changed files with 6 additions and 0 deletions

View File

@ -158,11 +158,17 @@ public class RegexBasedModelInterpolator
}
}
/*
MNG-2745: don't interpolate system properties in the POM. Bad dog!
if ( value == null )
{
value = envars.getProperty( realExpr );
}
*/
// if the expression refers to itself, skip it.
if ( String.valueOf( value ).indexOf( wholeExpr ) > -1 )
{