Here is the simplest possible Java program that runs a Groovy Script (as far as I know).
package affy.groovy.driver; import groovy.lang.GroovyShell; public class GroovyDriver { public static void main(String[] args) { new GroovyShell().evaluate("println(Hello World);"); } }
Youll need three jar files to make this program compile and execute: