public class GroovyMain
extends Object
A Command line to execute groovy.
| Modifiers | Name | Description |
|---|---|---|
static class |
GroovyMain.VersionProvider |
Supplies version text for the command-line interface. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public static String |
buildConfigScriptText(List<String> transforms)Builds a configuration script that applies the supplied transformations. |
|
protected GroovyCodeSource |
getScriptSource(boolean isScriptFile, String script)Get a new GroovyCodeSource for a script which may be given as a location (isScript is true) or as text (isScript is false). |
|
public String |
getText(String uriOrFilename)Get the text of the Groovy script at the given location. |
|
public File |
huntForTheScriptFile(String input)Hunt for the script file by calling searchForGroovyScriptFile(String). |
|
public static void |
main(String[] args)Main CLI interface. |
|
public static void |
processConfigScriptText(String scriptText, CompilerConfiguration conf)Evaluates inline configuration script text against the supplied compiler configuration. |
|
public static void |
processConfigScripts(List<String> scripts, CompilerConfiguration conf)Evaluates configuration scripts against the supplied compiler configuration. |
|
public static File |
searchForGroovyScriptFile(String input)Search for the script file, doesn't bother if it is named precisely. |
Builds a configuration script that applies the supplied transformations.
transforms - the transformation declarationsGet a new GroovyCodeSource for a script which may be given as a location (isScript is true) or as text (isScript is false).
isScriptFile - indicates whether the script parameter is a location or contentscript - the location or context of the scriptGet the text of the Groovy script at the given location. If the location is a file path and it does not exist as given, then GroovyMain.huntForTheScriptFile is called to try with some Groovy extensions appended. This method is not used to process scripts and is retained for backward compatibility. If you want to modify how GroovyMain processes scripts then use GroovyMain.getScriptSource.
Hunt for the script file by calling searchForGroovyScriptFile(String).
Main CLI interface.
args - all command line args.Evaluates inline configuration script text against the supplied compiler configuration.
scriptText - the configuration script textconf - the configuration to customizeEvaluates configuration scripts against the supplied compiler configuration.
scripts - the configuration script pathsconf - the configuration to customize