You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2013/08/06 10:36:33 UTC

svn commit: r1510880 - in /maven/site/trunk/content/apt/guides: introduction/introduction-to-plugin-prefix-mapping.apt plugin/guide-java-plugin-development.apt

Author: stephenc
Date: Tue Aug  6 08:36:32 2013
New Revision: 1510880

URL: http://svn.apache.org/r1510880
Log:
[MNGSITE-180] Applying follow-up patch

Contributed by Baptiste Mathus

Modified:
    maven/site/trunk/content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt
    maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt

Modified: maven/site/trunk/content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt?rev=1510880&r1=1510879&r2=1510880&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt (original)
+++ maven/site/trunk/content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt Tue Aug  6 08:36:32 2013
@@ -55,7 +55,7 @@ Introduction to Plugin Prefix Resolution
   "maven" or "plugin" surrounded by dashes in the plugin's artifact ID. The
   conventional artifact ID formats to use are:
 
-    * <<<maven-$\{prefix\}-plugin>>> - for plugins from the Apache Maven project (you <<must not>> use this naming pattern for your plugin, see {{{../plugin/guide-java-plugin-development.html#Plugin_Naming_Convention_and_Apache_Maven_Trademark}this note for more informations}})
+    * <<<maven-$\{prefix\}-plugin>>> - for official plugins maintained by the Apache Maven team itself (you <<must not>> use this naming pattern for your plugin, see {{{../plugin/guide-java-plugin-development.html#Plugin_Naming_Convention_and_Apache_Maven_Trademark}this note for more informations}})
 
     * <<<$\{prefix\}-maven-plugin>>> - for plugins from other sources
 

Modified: maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt?rev=1510880&r1=1510879&r2=1510880&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt (original)
+++ maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt Tue Aug  6 08:36:32 2013
@@ -39,8 +39,9 @@ Introduction
 
   Calling it <<<maven-<yourplugin>-plugin>>> (note "Maven" is at the beginning 
   of the plugin name) is <<strongly discouraged>> since it's a 
-  <<reserved naming pattern for official Apache Maven plugins>>.
-  Using this pattern is an infringement of the Apache Maven Trademark.
+  <<reserved naming pattern for official Apache Maven plugins maintained by the Apache Maven team>> 
+  with groupId <<<org.apache.maven.plugins>>>.
+  Using this naming pattern is an infringement of the Apache Maven Trademark.
 
 * Your First Plugin