PR: MNG-2603

Revert accidental commit on ProjectSorter.java in revision r462868.

I locally modified the ProjectSorter to exclude the build plugins from the DAG
to fix some cycles in the reactor when importing the entire trunk (components,
shared, scm, plugins etc..) in Eclipse. This was never meant to be committed.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463922 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kenney Westerhof 2006-10-14 12:50:36 +00:00
parent a21adb0bb8
commit edde7a1b58
1 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ public class ProjectSorter
dag.addEdge( id, parentId );
}
}
/*
List buildPlugins = project.getBuildPlugins();
if ( buildPlugins != null )
{
@ -144,7 +144,7 @@ public class ProjectSorter
}
}
}
*/
for ( Iterator j = project.getBuildExtensions().iterator(); j.hasNext(); )
{
Extension extension = (Extension) j.next();