From f4716d081bd82ba4fc532a0f2cccb9d9f0004783 Mon Sep 17 00:00:00 2001 From: Herve Boutemy Date: Mon, 4 Jun 2012 22:30:13 +0000 Subject: [PATCH] explained noticeable differences between plugin tools annotations and javadoc tags git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1346183 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/site/apt/examples/using-annotations.apt.vm | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 6807cd6..6e95c09 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 @@ -112,3 +112,15 @@ Using Plugin Tools Java5 Annotations [] [] + + Plugin Tools Java 5 Annotations ({{{../../maven-plugin-tools-annotations/index.html}see full example}}) + are named after Plugin Tools Javadoc Tags ({{{../../maven-plugin-tools-java/index.html}see full example}}), + with following little differences: + +*-------------------------------+---------------+ +|| Plugin Tools Javadoc Tags || Plugin Tools Java 5 Annotation || +*-------------------------------+---------------+ +| <<<@goal "goal-name">>> | <<<@Mojo( name = "goal-name" )>>> +*-------------------------------+---------------+ +| <<<@phase "\">>> | <<<@Mojo( defaultPhase = "\" )>>> +*-------------------------------+---------------+