mirror of https://github.com/apache/maven.git
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:
parent
d78ddd4fed
commit
e87621fa6c
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue