o take away the merging and leave that to the builder

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@769465 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2009-04-28 17:04:19 +00:00
parent d253679e62
commit 1c94e8f911
1 changed files with 1 additions and 5 deletions

View File

@ -297,9 +297,7 @@ public class DefaultLifecycleExecutor
// lifecycle we are not interested in goals -- like "generate-sources -- that belong to the default lifecycle.
//
for( Plugin plugin : project.getBuild().getPlugins() )
{
System.out.println( plugin.getArtifactId() );
{
for( PluginExecution execution : plugin.getExecutions() )
{
// if the phase is specified then I don't have to go fetch the plugin yet and pull it down
@ -429,8 +427,6 @@ public class DefaultLifecycleExecutor
break;
}
}
project.injectPluginManagementInfo( plugin );
}
MojoDescriptor mojoDescriptor;