Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
$groovy.execute("filename.groovy")

If the Groovy file contains Groovy functions, you can recall the functions by using 'eval()' methods.

Code Block
languagetext
$groovy.execute('filename.groovy')
$groovy.eval("new groovy().functionname()")

execute(String filename, String bindingName, Object bindingObject)

...