From b123530814203e8aa364a962deb5c001dbfdb704 Mon Sep 17 00:00:00 2001 From: Herve Boutemy Date: Mon, 14 May 2012 21:31:18 +0000 Subject: [PATCH] improved javadoc git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1338437 13f79535-47bb-0310-9956-ffa450edef68 --- .../apt/examples/using-annotations.apt.vm | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm b/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm index 325592f..61ca883 100644 --- a/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm +++ b/maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm @@ -87,14 +87,24 @@ Using Java5 annotations Information for plugin descriptor generation is specified using 4 annotations: - * <<<@Mojo>>>: This annotation will mark your class as a Mojo. See - {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html}javadoc}} for more information. + * 2 class-level annotations: - * <<<@Execute>>>: Used if your Mojo need to fork a lifecycle. See - {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Execute.html}javadoc}} for more information. + * <<<@Mojo>>>: This annotation will mark your class as a Mojo. See + {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html}javadoc}} for more information. - * <<<@Parameter>>>: Used to configure your Mojo parameters. See - {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Parameter.html}javadoc}} for more information. + * <<<@Execute>>>: Used if your Mojo need to fork a lifecycle. See + {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Execute.html}javadoc}} for more information. - * <<<@Component>>>: Used to configure injection of Plexus components. See - {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Component.html}javadoc}} for more information. + [] + + * 2 field-level annotations: + + * <<<@Parameter>>>: Used to configure your Mojo parameters. See + {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Parameter.html}javadoc}} for more information. + + * <<<@Component>>>: Used to configure injection of Plexus components. See + {{{/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Component.html}javadoc}} for more information. + + [] + + []