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:
Kenney Westerhof 2005-08-02 15:16:39 +00:00
parent 869525558b
commit 5a99a71bcb
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ else if ( DefaultArtifact.SCOPE_RUNTIME.equals( scope ) )
}
else if ( DefaultArtifact.SCOPE_TEST.equals( scope ) )
{
providedScope = false;
providedScope = true;
compileScope = true;
runtimeScope = true;
testScope = true;