context
, helper
, and logger
variables in the additional script.
public interface Script { public String execute(); }And our Groovy script file:
public String execute() { var other = context.createScript("otherScript.groovy"); return other.compute(); }The
otherScript.groovy
script is:public String compute() { return "toto"; }We can do:
ScriptWrapper<Script> wrapper = new GroovyScriptWrapper<Script>(){ }; Script script = wrapper.getScript(); File file = new File(<our script file>); wrapper.installScript(file); String value = script.execute();
public interface Script { public String execute(); }And our Groovy script file:
public String execute() { var other = context.createScript("otherScript.groovy"); return other.compute(); }The
otherScript.groovy
script is:public String compute() { context.echo("I am working hard!"); // we use context because it will be availble in our additional script return "toto"; }We can do:
ScriptHelperConfig.useContextInAdditionalScripts(true); // make context, helper and logger available in additional scripts ScriptWrapper<Script> wrapper = new GroovyScriptWrapper<Script>(){ }; Script script = wrapper.getScript(); File file = new File(<our script file>); wrapper.installScript(file); String value = script.execute();
Language | Supported | Limitations |
---|---|---|
Groovy | Yes | - |
Ruby | Yes | - |
Python | Yes | Navigation in StackTrace when using context not supported |
Javascript | No | - |
Copyright 2019-2020 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence