mirror of https://github.com/apache/maven.git
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:
parent
ed381aec0d
commit
a966656f38
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue