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