* @param earDeployable the archive to unpack.
* @return a new deployable (which is unpacked)
* @throws DeployerException if the EAR can't be unpacked
*/
protected EARDeployable unpackEARDeployable(final EARDeployable earDeployable) throws DeployerException {
EarUnpackOpts earUnpackOpts = new EarUnpackOpts();
earUnpackOpts.setWarAutoUnpacked(true);
return UnpackDeployableHelper.unpack(earDeployable, UnpackDeployableHelper.DEFAULT_FOLDER, false, earUnpackOpts);
}