You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/10/17 13:34:17 UTC

svn commit: r705565 - /maven/site/trunk/src/site/apt/settings.apt

Author: bentmann
Date: Fri Oct 17 04:34:16 2008
New Revision: 705565

URL: http://svn.apache.org/viewvc?rev=705565&view=rev
Log:
o Updated docs about plugin groups to mention that org.codehaus.mojo is automatically searched

Modified:
    maven/site/trunk/src/site/apt/settings.apt

Modified: maven/site/trunk/src/site/apt/settings.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/settings.apt?rev=705565&r1=705564&r2=705565&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/settings.apt (original)
+++ maven/site/trunk/src/site/apt/settings.apt Fri Oct 17 04:34:16 2008
@@ -87,7 +87,7 @@
   <usePluginRegistry>false</usePluginRegistry>
   <offline>false</offline>
   <pluginGroups>
-    <pluginGroup>org.codehaus.mojo</pluginGroup>
+    <pluginGroup>org.mortbay.jetty</pluginGroup>
   </pluginGroups>
   ...
 </settings>
@@ -115,12 +115,12 @@
   * <<pluginGroups>>:
   This element contains a list of <<<pluginGroup>>> elements, each contains a groupId. The
   list is searched when a plugin is used and the groupId is not provided in the command line.
-  This list contains <<<org.apache.maven.plugins>>> by default. For example, given the above
-  settings the Maven command-line may execute <<<org.codehaus.mojo:castor-maven-plugin:generate>>>
+  This list automatically contains <<<org.apache.maven.plugins>>> and <<<org.codehaus.mojo>>>. For example, given the
+  above settings the Maven command line may execute <<<org.mortbay.jetty:jetty-maven-plugin:run>>>
   with the truncated command:
 
 ------------------------------------
-mvn castor-maven-plugin:generate
+mvn jetty:run
 ------------------------------------
 
  []