o Trying to get the damn CVS update to take...

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163134 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2004-09-21 23:38:30 +00:00
parent 3e49095f26
commit 717f716b4f
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ public void visitPrereq( String goal, String prereq, MavenSession session ) thro
try
{
session.addImpliedExecution( goal, prereq );
visited.add( prereq );
}
catch ( CycleDetectedException e )
@ -80,6 +81,7 @@ public void visitPreGoal( String goal, String preGoal, MavenSession session ) th
public void visitGoal( String goal, MavenSession session ) throws GraphTraversalException
{
session.addSingleExecution( goal );
visited.add( goal );
}