o turn of reactor scanning option off by mistake as I renamed it in my branch. back alive. visual results

of ITs are coming.



git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@485460 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-12-11 01:43:19 +00:00
parent 2feb84893b
commit 4406cda6d0
1 changed files with 5 additions and 4 deletions

View File

@ -282,11 +282,12 @@ else if ( profileAction.startsWith( "+" ) )
transferListener = new BatchModeDownloadMonitor();
}
boolean reactorActive = false;
// This means to scan a directory structure for POMs and process them.
boolean useReactor = false;
if ( commandLine.hasOption( CLIManager.REACTOR ) )
{
reactorActive = true;
useReactor = true;
}
String alternatePomFile = null;
@ -323,7 +324,7 @@ else if ( profileAction.startsWith( "+" ) )
// -> showErrors (this is really CLI is but used inside Maven internals
// -> recursive
// -> updateSnapshots
// -> reactorActive
// -> useReactor
// -> transferListener: in the CLI this is batch or console
// We have a general problem with plexus components that are singletons in that they use
@ -382,7 +383,7 @@ else if ( quiet )
.setProperties( executionProperties )
.setReactorFailureBehavior( reactorFailureBehaviour )
.setRecursive( recursive )
//.setReactorActive( reactorActive )
.setUseReactor( useReactor )
.setPomFile( alternatePomFile )
.setShowErrors( showErrors )
.setInteractiveMode( interactive )