You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2011/06/07 15:33:00 UTC

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

Author: ltheussl
Date: Tue Jun  7 13:33:00 2011
New Revision: 1133006

URL: http://svn.apache.org/viewvc?rev=1133006&view=rev
Log:
escape special characters

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

Modified: maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt?rev=1133006&r1=1133005&r2=1133006&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt (original)
+++ maven/site/trunk/src/site/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt Tue Jun  7 13:33:00 2011
@@ -55,9 +55,9 @@ 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
+    * <<<maven-$\{prefix\}-plugin>>> - for plugins from the Apache Maven project
 
-    * <<<${prefix}-maven-plugin>>> - for plugins from other sources
+    * <<<$\{prefix\}-maven-plugin>>> - for plugins from other sources
 
   If your plugin's artifactId fits this pattern, Maven will automatically map
   your plugin to the correct prefix in the metadata stored within your plugin's

Modified: maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt?rev=1133006&r1=1133005&r2=1133006&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt (original)
+++ maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt Tue Jun  7 13:33:00 2011
@@ -208,7 +208,7 @@ mvn groupID:artifactID:version:goal
 
   * You can assign a shortened prefix to your plugin, such as <<<mvn hello:sayhi>>>.
     This is done automatically if you follow the convention of using
-    <<<${prefix}-maven-plugin>>> (or <<<maven-${prefix}-plugin>>> if the plugin is
+    <<<$\{prefix\}-maven-plugin>>> (or <<<maven-$\{prefix\}-plugin>>> if the plugin is
     part of the Apache Maven project). You may also assign one through additional
     configuration - for more information see
     {{{../introduction/introduction-to-plugin-prefix-mapping.html} Introduction to Plugin Prefix Mapping}}.