comment out readonly check, as it breaks an integration test

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@169172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-05-08 21:47:31 +00:00
parent 48e11d225f
commit 6348de7143
1 changed files with 2 additions and 1 deletions

View File

@ -367,7 +367,8 @@ public class DefaultPluginManager
// Validate against non-editable (@readonly) parameters, to make sure users aren't trying to
// override in the POM.
validatePomConfiguration( mojoDescriptor, pomConfiguration );
// TODO: currently breaks it0014, as an expression is in pomConfiguration
// validatePomConfiguration( mojoDescriptor, pomConfiguration );
}
ExpressionEvaluator expressionEvaluator = new PluginParameterExpressionEvaluator( session, pathTranslator );