mirror of https://github.com/apache/maven.git
[MNG-546]. copy resources in the correct order
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@209594 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7ad6e2a386
commit
82afba636b
|
@ -315,13 +315,13 @@ public class DoxiaMojo
|
||||||
copyDirectory( imagesDirectory, new File( localeOutputDirectory, "images" ) );
|
copyDirectory( imagesDirectory, new File( localeOutputDirectory, "images" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
copyResources( localeOutputDirectory );
|
||||||
|
|
||||||
// Copy site resources
|
// Copy site resources
|
||||||
if ( resourcesDirectory != null && resourcesDirectory.exists() )
|
if ( resourcesDirectory != null && resourcesDirectory.exists() )
|
||||||
{
|
{
|
||||||
copyDirectory( resourcesDirectory, localeOutputDirectory );
|
copyDirectory( resourcesDirectory, localeOutputDirectory );
|
||||||
}
|
}
|
||||||
|
|
||||||
copyResources( localeOutputDirectory );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch ( MavenReportException e )
|
catch ( MavenReportException e )
|
||||||
|
|
Loading…
Reference in New Issue