You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by lt...@apache.org on 2005/09/27 23:20:17 UTC

svn commit: r292049 - in /maven/maven-1/plugins/trunk/plugin/xdocs: goals.xml index.xml properties.xml

Author: ltheussl
Date: Tue Sep 27 14:20:16 2005
New Revision: 292049

URL: http://svn.apache.org/viewcvs?rev=292049&view=rev
Log:
Documentation update

Modified:
    maven/maven-1/plugins/trunk/plugin/xdocs/goals.xml
    maven/maven-1/plugins/trunk/plugin/xdocs/index.xml
    maven/maven-1/plugins/trunk/plugin/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/plugin/xdocs/goals.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/xdocs/goals.xml?rev=292049&r1=292048&r2=292049&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/xdocs/goals.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/xdocs/goals.xml Tue Sep 27 14:20:16 2005
@@ -67,7 +67,7 @@
       </goal>
       <goal>
         <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>
         <name>plugin:install-now</name>
@@ -79,13 +79,13 @@
       </goal>
       <goal>
         <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>
         <name>plugin:uninstall-now</name>
         <description>
           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>
       </goal>
       <goal>
@@ -102,6 +102,8 @@
         <name>plugin:repository-install-snapshot</name>
         <description>
           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>
       </goal>
       <goal>
@@ -118,6 +120,8 @@
           Deploy a snapshot build of the plugin to the remote repository.
           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.
+          <strong>DEPRECATED</strong>: use <code>plugin:repository-deploy</code> with
+          <code>-SNAPSHOT</code> in the project version for equivalent behaviour.
         </description>
       </goal>
     </goals>

Modified: maven/maven-1/plugins/trunk/plugin/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/xdocs/index.xml?rev=292049&r1=292048&r2=292049&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/xdocs/index.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/xdocs/index.xml Tue Sep 27 14:20:16 2005
@@ -27,7 +27,8 @@
   <body>
     <section name="Maven Plugin Plug-in">
       <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>
         For more information on the functionality provided by this plugin,

Modified: maven/maven-1/plugins/trunk/plugin/xdocs/properties.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/xdocs/properties.xml?rev=292049&r1=292048&r2=292049&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/xdocs/properties.xml Tue Sep 27 14:20:16 2005
@@ -35,11 +35,55 @@
           <td>maven.docs.src</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>${basedir}/xdocs</code>.</p>
+            Default is <code>${basedir}/xdocs</code>.
           </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>
+          </tr>
       </table>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org