(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
master
Benson Margulies 2013-01-01 18:46:27 +00:00
parent 5fe4d7d344
commit 0d3bc50059
1 changed files with 2 additions and 2 deletions

View File

@ -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 "";