Author: jvanzyl
Date: Tue Apr 28 17:04:19 2009
New Revision: 769465

URL: http://svn.apache.org/viewvc?rev=769465&view=rev
Log:
o take away the merging and leave that to the builder

Modified:
    
maven/components/branches/MNG-2766/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

Modified: 
maven/components/branches/MNG-2766/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
URL: 
http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java?rev=769465&r1=769464&r2=769465&view=diff
==============================================================================
--- 
maven/components/branches/MNG-2766/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
 (original)
+++ 
maven/components/branches/MNG-2766/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
 Tue Apr 28 17:04:19 2009
@@ -297,9 +297,7 @@
         // 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 @@
                     break;
                 }
             }
-
-            project.injectPluginManagementInfo( plugin );
         }
 
         MojoDescriptor mojoDescriptor;



Reply via email to