mirror of https://github.com/apache/maven.git
o Improving exception message.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163297 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2ab584b37d
commit
cd38ae43fc
|
@ -42,7 +42,7 @@ public class PluginParameterExpressionEvaluator
|
|||
}
|
||||
catch ( ComponentLookupException e )
|
||||
{
|
||||
throw new PluginConfigurationException( "Cannot lookup component: ", e );
|
||||
throw new PluginConfigurationException( "Cannot lookup component: " + role + ".", e );
|
||||
}
|
||||
}
|
||||
else if ( expression.equals( "#localRepository" ) )
|
||||
|
@ -112,7 +112,7 @@ public class PluginParameterExpressionEvaluator
|
|||
value = System.getProperty( expression.substring( 1 ) );
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
// ----------------------------------------------------------------------
|
||||
// If we strike and we are not dealing with an expression then we will
|
||||
// will let the value pass through unaltered so that users can hardcode
|
||||
// literal values. Expressions that evaluate to null will be passed
|
||||
|
|
Loading…
Reference in New Issue