public class Groovy extends Java
Executes a series of Groovy statements.
Statements can either be read in from a text file using the src attribute or from between the enclosing groovy tags.
Type Params | Return Type | Name and description |
---|---|---|
|
protected void |
addClassPathes(GroovyClassLoader classLoader) Adds the class paths (if any) |
|
public void |
addConfigured(ResourceCollection a) Set the source resource. |
|
public void |
addFileset(FileSet set) Adds a fileset (nested fileset attribute) which should represent a single source file. |
|
public final void |
addFilterChain(FilterChain filter) Add the FilterChain element. |
|
public void |
addText(String txt) Set an inline command to execute. |
|
public Commandline.Argument |
createArg() |
|
public Path |
createClasspath() Returns a new path element that can be configured. |
|
protected void |
execGroovy(String txt, PrintStream out) Exec the statement. |
|
public void |
execute() Load the file and then execute it |
|
public Path |
getClasspath() Gets the classpath. |
|
public boolean |
getParameters() Returns true if parameter metadata generation has been enabled. |
|
public static void |
main(String[] args) |
|
protected void |
printResults(PrintStream out) print any results in the statement. |
|
protected void |
runStatements(Reader reader, PrintStream out) Read in lines and execute them. |
|
public void |
setAppend(boolean append) Whether output should be appended to or overwrite an existing file. |
|
public void |
setClasspath(Path classpath) Sets the classpath for loading. |
|
public void |
setClasspathRef(Reference ref) Set the classpath for loading using the classpath reference. |
|
public void |
setConfigscript(String configscript) Sets the configuration script for the groovy compiler configuration. |
|
public void |
setContextClassLoader(boolean contextClassLoader) Setting to true will cause the contextClassLoader to be set with the classLoader of the shell used to run the script. |
|
public void |
setEncoding(String encoding) Declare the encoding to use when inputting from a resource; If not supplied or the empty encoding is supplied, a guess will be made for file resources, otherwise the platform's default encoding will be used. |
|
public void |
setFork(boolean fork) Should the script be executed using a forked process. |
|
public void |
setIncludeAntRuntime(boolean includeAntRuntime) Should the system classpath be included on the classpath when forking. |
|
public void |
setIndy(boolean indy) Sets the indy flag to enable or disable invokedynamic |
|
public void |
setOutput(File output) Set the output file; optional, defaults to the Ant log. |
|
public void |
setOutputEncoding(String encoding) Declare the encoding to use when outputting to a file; Leave unspecified or use "" for the platform's default encoding. |
|
public void |
setParameters(boolean parameters) If true, generates metadata for reflection on method parameter names (jdk8+ only). |
|
public void |
setScriptBaseClass(String scriptBaseClass) Set the script base class name |
|
public void |
setSrc(File srcFile) Set the name of the file to be run. |
|
public void |
setStacktrace(boolean stacktrace) Enable compiler to report stack trace information if a problem occurs during compilation. |
|
public void |
setUseGroovyShell(boolean useGroovyShell) Should a new GroovyShell be used when forking. |
Adds the class paths (if any)
classLoader
- the classloader to configureSet the source resource.
a
- the resource to load as a single element Resource collection.Adds a fileset (nested fileset attribute) which should represent a single source file.
set
- the fileset representing a source fileAdd the FilterChain element.
filter
- the filter to addSet an inline command to execute. NB: Properties are not expanded in this text.
txt
- the inline groovy commands to executeReturns a new path element that can be configured. Gets called for instance by Ant when it encounters a nested <classpath> element.
Exec the statement.
txt
- the groovy source to execout
- not used?Load the file and then execute it
Gets the classpath.
Returns true if parameter metadata generation has been enabled.
print any results in the statement.
out
- the output PrintStream to print toRead in lines and execute them.
reader
- the reader from which to get the groovy source to execout
- the outputstream to useWhether output should be appended to or overwrite an existing file. Defaults to false.
append
- set to true to appendSets the classpath for loading.
classpath
- The classpath to setSet the classpath for loading using the classpath reference.
ref
- the refid to useSets the configuration script for the groovy compiler configuration.
configscript
- path to the configuration scriptSetting to true will cause the contextClassLoader to be set with the classLoader of the shell used to run the script. Not used if fork is true. Not allowed when running from Maven but in that case the context classLoader is set appropriately for Maven.
contextClassLoader
- set to true to set the context classloaderDeclare the encoding to use when inputting from a resource; If not supplied or the empty encoding is supplied, a guess will be made for file resources, otherwise the platform's default encoding will be used.
encoding
- the character encoding to use.Should the script be executed using a forked process. Defaults to false.
fork
- true if the script should be executed in a forked processShould the system classpath be included on the classpath when forking. Defaults to true.
includeAntRuntime
- true if the system classpath should be on the classpathSets the indy flag to enable or disable invokedynamic
indy
- true means invokedynamic support is activeSet the output file; optional, defaults to the Ant log.
output
- the output fileDeclare the encoding to use when outputting to a file; Leave unspecified or use "" for the platform's default encoding.
encoding
- the character encoding to use.If true, generates metadata for reflection on method parameter names (jdk8+ only). Defaults to false.
parameters
- set to true to generate metadata.Set the script base class name
scriptBaseClass
- the name of the base class for scriptsSet the name of the file to be run. The folder of the file is automatically added to the classpath. Required unless statements are enclosed in the build file or a nested resource is supplied.
srcFile
- the file containing the groovy script to executeEnable compiler to report stack trace information if a problem occurs during compilation.
stacktrace
- set to true to enable stacktrace reportingShould a new GroovyShell be used when forking. Special variables won't be available but you don't need Ant in the classpath.
useGroovyShell
- true if GroovyShell should be used to run the script directly