From 58f5506c596d0dce9ea5aa54283073a285c0a2fc Mon Sep 17 00:00:00 2001 From: Herve Boutemy Date: Sun, 27 Apr 2014 15:26:43 +0000 Subject: [PATCH] added explanations before magic snippet git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1590404 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/site/apt/examples/using-annotations.apt.vm | 9 +++++++++ 1 file changed, 9 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 7347b96..6d88b17 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 @@ -75,6 +75,15 @@ Using Plugin Tools Java5 Annotations To be able to use these Java 5 annotations, you need to add some configuration to your plugin POM: + * add <<>> dependency, preferably with <<>> scope, + + * bind goals to <<>> phase, + + * configure <<>> parameter to avoid failure caused by + {{{http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_maven-plugin_packaging}default <<>> goal binding to <<>> phase}}. + + [] + +-----+ ...