improved javadoc

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1338437 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2012-05-14 21:31:18 +00:00
parent 180bcb36c9
commit b123530814
1 changed files with 18 additions and 8 deletions

View File

@ -87,14 +87,24 @@ Using Java5 annotations
Information for plugin descriptor generation is specified using 4 annotations:
* 2 class-level 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.
* <<<@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.
[]
* 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.
[]
[]