Index: pom.xml
===================================================================
--- pom.xml (revision 480570)
+++ pom.xml (working copy)
@@ -52,5 +52,10 @@
1.0-beta-1
test
+
+ org.codehaus.plexus
+ plexus-utils
+ 1.0.5
+
Index: src/main/java/org/apache/maven/plugin/resources/ReflectionProperties.java
===================================================================
--- src/main/java/org/apache/maven/plugin/resources/ReflectionProperties.java (revision 480570)
+++ src/main/java/org/apache/maven/plugin/resources/ReflectionProperties.java (working copy)
@@ -49,7 +49,7 @@
Object value = null;
try
{
- value = ReflectionValueExtractor.evaluate( "" + key , project );
+ value = ReflectionValueExtractor.evaluate( "" + key , project , false );
if ( escapedBackslashesInFilePath && value != null &&
"java.lang.String".equals( value.getClass().getName() ) )