PR: MNG-3118

Description: test classes dir comes before classes dir
Submitted by: Paul Gier
Reviewed by: /me




git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@559042 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kenney Westerhof 2007-07-24 13:14:50 +00:00
parent d78ddd4fed
commit e87621fa6c
1 changed files with 2 additions and 2 deletions

View File

@ -555,10 +555,10 @@ public class MavenProject
{ {
List list = new ArrayList( getArtifacts().size() + 2 ); List list = new ArrayList( getArtifacts().size() + 2 );
list.add( getBuild().getOutputDirectory() );
list.add( getBuild().getTestOutputDirectory() ); list.add( getBuild().getTestOutputDirectory() );
list.add( getBuild().getOutputDirectory() );
for ( Iterator i = getArtifacts().iterator(); i.hasNext(); ) for ( Iterator i = getArtifacts().iterator(); i.hasNext(); )
{ {
Artifact a = (Artifact) i.next(); Artifact a = (Artifact) i.next();