public void execute() throws BuildException {
if (componentName == null) {
throw new BuildException("null componentName");
}
try {
FrameworkInstallationService is = getInstallationService();
is.unloadInstaller(componentName, delete);
}
catch (IOException e) {
log.error("Caught an exception getting the installation service", e);
throw new BuildException(e);
}