mirror of https://github.com/apache/maven.git
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:
parent
d253679e62
commit
1c94e8f911
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue