[MPLUGIN-213] NullPointerException in descriptor goal

Submitted by Tony Chemit.

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1352829 13f79535-47bb-0310-9956-ffa450edef68
master
Olivier Lamy 2012-06-22 10:10:50 +00:00
parent 8fa0dc72fb
commit 71415e98eb
1 changed files with 4 additions and 1 deletions

View File

@ -519,7 +519,10 @@ public class JavaAnnotationsMojoDescriptorExtractor
{
mojoDescriptor.setExecuteGoal( execute.goal() );
mojoDescriptor.setExecuteLifecycle( execute.lifecycle() );
mojoDescriptor.setExecutePhase( execute.phase().id() );
if ( execute.phase() != null )
{
mojoDescriptor.setExecutePhase( execute.phase().id() );
}
}
mojoDescriptor.setExecutionStrategy( mojo.executionStrategy() );