* @throws IOException
*/
public WGADeployment createDeployment(String name, File wgaWar, IProgressMonitor monitor, boolean forceUpdate) throws ZipException, IOException {
File deploymentDir = new File(_baseDir, name);
if (!deploymentDir.exists()) {
deploymentDir.mkdir();
}
WGADeployment deployment = new WGADeployment(deploymentDir);
if (forceUpdate || !deployment.isDeployed()) {
deployment.updateWGA(wgaWar, monitor);
}