[MNG-2030] Adding version output to the debugging log-level.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@379285 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2006-02-20 23:42:23 +00:00
parent 36093a18b0
commit c458848733

View File

@ -119,12 +119,17 @@ public static int main( String[] args, ClassWorld classWorld )
cliManager.displayHelp();
return 0;
}
if ( commandLine.hasOption( CLIManager.VERSION ) )
{
showVersion();
return 0;
}
else if ( debug )
{
showVersion();
}
EventDispatcher eventDispatcher = new DefaultEventDispatcher();