}
private void copySource(File sourceDirectory, File targetDirectory) throws MojoExecutionException {
getLog().info( "attempting to copy directory : " + sourceDirectory.getAbsolutePath() );
try {
new DirectoryCopier( sourceDirectory ).copyTo( targetDirectory );
}
catch ( IOException e ) {
throw new MojoExecutionException( "Unable to copy directory [" + sourceDirectory + "]", e );
}
}