Author: dennisl
Date: Thu Jul 13 17:03:13 2006
New Revision: 421753

URL: http://svn.apache.org/viewvc?rev=421753&view=rev
Log:
Remove the @description annotation and add its text as Javadoc for the class, 
in the simple mojo example

Modified:
    
maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt

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=421753&r1=421752&r2=421753&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 
Thu Jul 13 17:03:13 2006
@@ -57,8 +57,8 @@
 import org.apache.maven.plugin.MojoExecutionException;
 
 /**
+ * Says "Hi" to the user.
  * @goal sayhi
- * @description Says "Hi" to the user
  */
 public class GreetingMojo extends AbstractMojo 
 {
@@ -73,8 +73,8 @@
     infrastructure required to implement a mojo except for the
     <<<execute>>> method.
 
-  * The comment lines starting with "<<<@goal>>>" and "<<<@description>>>"
-    are examples of annotations.  These two annotations are required, but
+  * The comment line starting with "<<<@goal>>>"
+    is an example of an annotation.  This annotation is required, but
     there are a number of annotations which can be used to control how and
     when the mojo is executed.
 


Reply via email to