mirror of https://github.com/apache/maven.git
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:
parent
b4a8fc858b
commit
52bd946dac
|
@ -216,7 +216,8 @@ public class DefaultArtifactCollector
|
|||
|
||||
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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue