if ( exists )
{
FileUtils.deleteDirectory( unzipDir );
}
Expand unzipper = new Expand();
unzipper.setSrc( jarFile );
unzipper.setDest( unzipDir );
unzipper.execute();
}
catch ( IOException e )
{
throw new MavenException( "Unable to extract plugin: " + jarFile, e );
}