mirror of https://github.com/apache/maven.git
Fixes MNG-514: ScopeArtifactFilter will also include PROVIDED artifacts
when resolving for TEST. They are enabled for dependency resolution, but NOT added to any classloader. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@227022 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
869525558b
commit
5a99a71bcb
|
@ -54,7 +54,7 @@ public class ScopeArtifactFilter
|
|||
}
|
||||
else if ( DefaultArtifact.SCOPE_TEST.equals( scope ) )
|
||||
{
|
||||
providedScope = false;
|
||||
providedScope = true;
|
||||
compileScope = true;
|
||||
runtimeScope = true;
|
||||
testScope = true;
|
||||
|
|
Loading…
Reference in New Issue