variables.setVariable("out", out);
final GroovyShell shell = new GroovyShell(getClass().getClassLoader(), variables);
try
{
LOG.debug("Evaluating script: " + StringUtils.abbreviate(script, 20));
shell.evaluate(script);
}
catch (final CompilationFailedException e)
{
LOG.error("CompilationFailedException", e);
throw new StepExecutionException("Cannot compile groovy code: " + script, step, e);