From 0d3bc50059092949b184a9a35ba7d9105b95483f Mon Sep 17 00:00:00 2001 From: Benson Margulies Date: Tue, 1 Jan 2013 18:46:27 +0000 Subject: [PATCH] (no jira) add more javadoc to spare someone else stepping into a trap. git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1427510 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/maven/plugins/annotations/Execute.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Execute.java b/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Execute.java index c9bca36..1cf479b 100644 --- a/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Execute.java +++ b/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Execute.java @@ -39,13 +39,13 @@ import java.lang.annotation.Target; public @interface Execute { /** - * lifecycle phase to fork. + * lifecycle phase to fork. Note that specifying a phase overrides specifying a goal. * @return the phase */ LifecyclePhase phase() default LifecyclePhase.NONE; /** - * goal to fork. + * goal to fork. Note that specifying a phase overrides specifying a goal. * @return the goal */ String goal() default "";