[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:
Emmanuel Venisse 2005-07-07 12:05:38 +00:00
parent 7ad6e2a386
commit 82afba636b
1 changed files with 2 additions and 2 deletions

View File

@ -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 )