}
public static void main( String[] args )
throws Exception
{
SimpleArgumentParser parser = Bootstrap.createDefaultParser();
parser.addArgument( "--destDir", "The location to install Maven", true, getDefaultPrefix() );
parser.addArgument( "--build-plugins", "Build the plugins from SVN" );
parser.addArgument( "--plugins-directory", "Where the plugins are located to build from", true );
parser.addArgument( "--update-snapshots", "Update snapshots during build" );
parser.addArgument( "--offline", "Run build in offline mode", "-o" );
parser.parseCommandLineArguments( args );
BootstrapInstaller bootstrap = new BootstrapInstaller( parser );
bootstrap.run();
}