Fixing CI process. Children of system scoped deps were not being excluded properly...I had marked it to exclude the system scoped dep as well.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@332317 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2005-11-10 16:04:56 +00:00
parent b4a8fc858b
commit 52bd946dac
1 changed files with 2 additions and 1 deletions

View File

@ -216,7 +216,8 @@ else if ( currentRange == null )
fireEvent( ResolutionListener.INCLUDE_ARTIFACT, listeners, node );
if ( node.isActive() )
// don't pull in the transitive deps of a system-scoped dependency.
if ( node.isActive() && !Artifact.SCOPE_SYSTEM.equals( node.getArtifact().getScope() ) )
{
fireEvent( ResolutionListener.PROCESS_CHILDREN, listeners, node );