Fix the FAQ with new goals to use with plugins

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@384375 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2006-03-08 23:25:16 +00:00
parent deb9ea2db8
commit 49e6ddb737

View File

@ -24,41 +24,51 @@
<part id="General"> <part id="General">
<title>General</title> <title>General</title>
<faq id="building-all"> <faq id="install-all">
<question>How do I build and install all these plugins from source ?</question> <question>How do I build and install all these plugins from source ?</question>
<answer> <answer>
<p>maven -Dgoal=clean,plugin:install multiproject:goal</p> <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> </answer>
</faq> </faq>
<faq id="test-all"> <faq id="test-all">
<question>How do I test all these plugins ?</question> <question>How do I test all these plugins ?</question>
<answer> <answer>
<p> <p>In the root directory (after they have been installed):</p>
maven -Dgoal=plugin:test multiproject:goal <source>maven plugins:test-all</source>
After they have been installed
</p>
</answer> </answer>
</faq> </faq>
<faq id="site-build"> <faq id="root-site-build">
<question>How do I build the web site for the optional plugins?</question> <question>How do I create the web site root for all plugins ?</question>
<answer> <answer>
<p>maven multiproject</p> <p>In the root directory :</p>
<source>maven plugins:site</source>
</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>
</answer> </answer>
</faq> </faq>
<faq id="site-deploy"> <faq id="site-deploy">
<question>How do I deploy the web site for the optional plugins?</question> <question>How do I create and deploy the web site for all plugins and for the root site ?</question>
<answer> <answer>
<p>maven multiproject site:sshdeploy</p> <p>In the root directory :</p>
</answer> <source>maven plugins:deploy-all-sites</source>
</faq>
<faq id="dashboard">
<question>How do I generate the dashboard for all plugins?</question>
<answer>
<p>maven dashboard</p>
</answer> </answer>
</faq> </faq>