Documentation update

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@292049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2005-09-27 21:20:16 +00:00
parent b7bb277765
commit 28ddca032f
3 changed files with 56 additions and 7 deletions

View File

@ -67,7 +67,7 @@
</goal> </goal>
<goal> <goal>
<name>plugin:install</name> <name>plugin:install</name>
<description>Install the plugin in Maven's plugins dir</description> <description>Build and install the current plugin in <code>${maven.plugin.dir}</code>.</description>
</goal> </goal>
<goal> <goal>
<name>plugin:install-now</name> <name>plugin:install-now</name>
@ -79,13 +79,13 @@
</goal> </goal>
<goal> <goal>
<name>plugin:uninstall</name> <name>plugin:uninstall</name>
<description>Uninstall all versions of the plugin in Maven's plugins dir</description> <description>Uninstall all versions of the plugin from Maven's plugins dir</description>
</goal> </goal>
<goal> <goal>
<name>plugin:uninstall-now</name> <name>plugin:uninstall-now</name>
<description> <description>
Uninstall the plugin from the current Maven instance. Uninstall the plugin from the current Maven instance.
It is also uninstalled into the user's plugin cache and the global Maven installation. It is also uninstalled from the user's plugin cache and the global Maven installation.
</description> </description>
</goal> </goal>
<goal> <goal>
@ -102,6 +102,8 @@
<name>plugin:repository-install-snapshot</name> <name>plugin:repository-install-snapshot</name>
<description> <description>
Install a snapshot build of the plugin to the local repository. Install a snapshot build of the plugin to the local repository.
<strong>DEPRECATED</strong>: use <code>plugin:repository-install</code> with
<code>-SNAPSHOT</code> in the project version for equivalent behaviour.
</description> </description>
</goal> </goal>
<goal> <goal>
@ -118,6 +120,8 @@
Deploy a snapshot build of the plugin to the remote repository. Deploy a snapshot build of the plugin to the remote repository.
This uses the <a href="../artifact/index.html">Artifact plugin</a> to This uses the <a href="../artifact/index.html">Artifact plugin</a> to
do the deployment, so properties need to be set up as per that plugin. do the deployment, so properties need to be set up as per that plugin.
<strong>DEPRECATED</strong>: use <code>plugin:repository-deploy</code> with
<code>-SNAPSHOT</code> in the project version for equivalent behaviour.
</description> </description>
</goal> </goal>
</goals> </goals>

View File

@ -27,7 +27,8 @@
<body> <body>
<section name="Maven Plugin Plug-in"> <section name="Maven Plugin Plug-in">
<p> <p>
This plug-in provides ways of working with maven plugins This plug-in provides means for building, installing
and downloading plugins for Maven.
</p> </p>
<p> <p>
For more information on the functionality provided by this plugin, For more information on the functionality provided by this plugin,

View File

@ -35,8 +35,52 @@
<td>maven.docs.src</td> <td>maven.docs.src</td>
<td>Yes</td> <td>Yes</td>
<td> <td>
<p>Default value is Default is <code>${basedir}/xdocs</code>.
<code>${basedir}/xdocs</code>.</p> </td>
</tr>
<tr>
<td><code>maven.plugin.dir</code></td>
<td>Yes</td>
<td>
Where Maven can find it's plugins.
Default is <code>${maven.home}/plugins</code>.
</td>
</tr>
<tr>
<td><code>maven.plugin.user.dir</code></td>
<td>Yes</td>
<td>
Where Maven can find plugins for this user only.
Default is <code>${maven.home.local}/plugins</code>.
</td>
</tr>
<tr>
<td><code>maven.plugin.unpacked.dir</code></td>
<td>Yes</td>
<td>
Where Maven expands installed plugins for processing.
Default is <code>${maven.home.local}/cache</code>.
</td>
</tr>
<tr>
<td><code>maven.repo.local</code></td>
<td>Yes</td>
<td>
The repository on the local machine Maven should use to store
downloaded artifacts (jars etc).
Default is <code>${maven.home.local}/repository</code>.
</td>
</tr>
<tr>
<td><code>maven.repo.remote</code></td>
<td>Yes</td>
<td>
The repository maven should use to download artifacts
(jars etc) that it can't find in the local repository.
You should set this to one of the
<a href="http://maven.apache.org/faq.html#ibiblio-mirrors">Ibiblio mirrors</a>.
You can also specify multiple repositories, separated by commas.
Default is <code>http://www.ibiblio.org/maven</code>.
</td> </td>
</tr> </tr>
</table> </table>