blob: b28baa0b419ae63241198e4f5dbdd0bdfdedf25e [file] [log] [blame]
package org.codehaus.groovy.tools;
import groovy.lang.GroovyShell;
import java.io.File;
public class DocGeneratorMain {
public static void main(String[] args) {
try {
GroovyShell shell = new GroovyShell();
//shell.run("src/main/org/codehaus/groovy/tools/DocGenerator.groovy", "org.codehaus.groovy.tools.DocGenerator.groovy", args);
shell.run(new File("src/main/org/codehaus/groovy/tools/DocGenerator.groovy"), args);
}
catch (Exception e) {
System.out.println("Failed: " + e);
e.printStackTrace();
}
}
}