schemaExport.execute(false, false, false, true);
exceptions = CollectionUtil.checkList(schemaExport.getExceptions(), Exception.class);
}
else if ("update".equalsIgnoreCase(action)) {
JbpmSchemaUpdate schemaUpdate = getSchemaUpdate(configuration);
schemaUpdate.execute(false, false);
exceptions = schemaUpdate.getExceptions();
}
else {
throw new BuildException("Unsupported action: " + action);
}