2006-04-21 23:21:26 +00:00

101 lines
3.4 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<!-- $Id$ -->
<faqs title="Frequently Asked Questions">
<part id="General">
<title>General</title>
<faq id="checkout">
<question>How do I checkout the source code for all plugins ?</question>
<answer>
<source>svn checkout http://svn.apache.org/repos/asf/maven/maven-1/trunks maven-1</source>
<p>
This will put the whole Maven 1 source distribution, including the core
and the plugins-sandbox, into a directory <code>maven-1</code> (the root directory).
</p>
<p>
If you want to checkout a particular plugin only, you also need
the <code>plugins-parent</code> and <code>plugins-common</code> modules,
eg for the xdoc plugin:
</p>
<source>svn checkout http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/xdoc/ xdoc
svn checkout http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/plugins-parent/ plugins-parent
svn checkout http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/plugins-common/ plugins-common
</source>
</answer>
</faq>
<faq id="install-all">
<question>How do I build and install all these plugins from source ?</question>
<answer>
<p>In the root directory :</p>
<source>maven plugins:install-all</source>
</answer>
</faq>
<faq id="deploy-all">
<question>How do I build from source and deploy all these plugins in a remote repository ?</question>
<answer>
<p>In the root directory :</p>
<source>maven plugins:repository-deploy-all</source>
</answer>
</faq>
<faq id="test-all">
<question>How do I test all these plugins ?</question>
<answer>
<p>In the root directory (after they have been installed):</p>
<source>maven plugins:test-all</source>
</answer>
</faq>
<faq id="root-site-build">
<question>How do I create the web site root for all plugins ?</question>
<answer>
<p>In the root directory :</p>
<source>maven plugins:site</source>
<p>The web site will be in the <code>plugins-site/target/docs</code> directory.</p>
</answer>
</faq>
<faq id="build-all-sites">
<question>How do I create the web site for all plugins and for the root site ?</question>
<answer>
<p>In the root directory :</p>
<source>maven plugins:build-all-sites</source>
<p>The web site will be in the <code>plugins-site/target/docs</code> directory.</p>
</answer>
</faq>
<faq id="site-deploy">
<question>How do I create and deploy the web site for all plugins and for the root site ?</question>
<answer>
<p>In the root directory :</p>
<source>maven plugins:deploy-all-sites</source>
</answer>
</faq>
</part>
</faqs>