You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/05/18 00:28:02 UTC

svn commit: r1339893 - /maven/plugin-tools/trunk/maven-plugin-tools-java/src/site/apt/index.apt

Author: hboutemy
Date: Thu May 17 22:28:02 2012
New Revision: 1339893

URL: http://svn.apache.org/viewvc?rev=1339893&view=rev
Log:
improved documentation

Modified:
    maven/plugin-tools/trunk/maven-plugin-tools-java/src/site/apt/index.apt

Modified: maven/plugin-tools/trunk/maven-plugin-tools-java/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-java/src/site/apt/index.apt?rev=1339893&r1=1339892&r2=1339893&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-java/src/site/apt/index.apt (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-java/src/site/apt/index.apt Thu May 17 22:28:02 2012
@@ -62,7 +62,7 @@ public class MyMojo
     extends AbstractMojo
 {
     /**
-     * @parameter alias="myAlias" implementation="" expression="aSystemProperty" default-value="${anExpression}"
+     * @parameter alias="myAlias" implementation="" expression="aProperty" default-value="${anExpression}"
      * @readonly
      * @required
      * @since <since-text>
@@ -84,8 +84,8 @@ public class MyMojo
 }
 +---------+
 
-  <<Notice>>: before 3.0, <<<${ }>>> were required for <<<expression>>> value (<<<expression="${aSystemProperty}">>>),
-  but starting with 3.0, you can omit it (<<<expression="aSystemProperty">>>)
+  <<Notice>>: before 3.0, <<<${ }>>> were required for <<<expression>>> value (<<<expression="${aProperty}">>>),
+  but starting with 3.0, you can omit it (<<<expression="aProperty">>>)
 
 * See also