private void extractZipTemplate( File outputDir, File template )
throws MojoExecutionException
{
try
{
ZipExtractor ze = new ZipExtractor( template );
ze.extract( outputDir );
}
catch ( IOException e )
{
throw new MojoExecutionException( "An error happens when trying to extract html-template.", e );
}