Compilation options to be passed to the Groovy compiler.
Type | Name and description |
---|---|
protected boolean |
excludeFromAntProperties(String fieldName) |
GroovyCompileOptions |
fork(Map<String, Object> forkArgs) Convenience method to set GroovyForkOptions with named parameter syntax. |
File |
getConfigurationScript() A Groovy script file that configures the compiler, allowing extensive control over how the code is compiled. |
String |
getEncoding() Tells the source encoding. |
List<String> |
getFileExtensions() Returns the list of acceptable source file extensions. |
GroovyForkOptions |
getForkOptions() Returns options for running the Groovy compiler in a separate process. |
Map<String, Boolean> |
getOptimizationOptions() Returns optimization options for the Groovy compiler. |
File |
getStubDir() Returns the directory where Java stubs for Groovy classes will be stored during Java/Groovy joint compilation. |
boolean |
isFailOnError() Tells whether the compilation task should fail if compile errors occurred. |
boolean |
isFork() Tells whether to run the Groovy compiler in a separate process. |
boolean |
isJavaAnnotationProcessing() Whether the Groovy code should be subject to Java annotation processing. |
boolean |
isKeepStubs() Tells whether Java stubs for Groovy classes generated during Java/Groovy joint compilation should be kept after compilation has completed. |
boolean |
isListFiles() Tells whether to print which source files are to be compiled. |
boolean |
isVerbose() Tells whether to turn on verbose output. |
Map<String, Object> |
optionMap() Internal method. |
void |
setConfigurationScript(File configurationFile) Sets the path to the groovy configuration file. |
void |
setEncoding(String encoding) Sets the source encoding. |
void |
setFailOnError(boolean failOnError) Sets whether the compilation task should fail if compile errors occurred. |
void |
setFileExtensions(List<String> fileExtensions) Sets the list of acceptable source file extensions. |
void |
setFork(boolean fork) Sets whether to run the Groovy compiler in a separate process. |
void |
setForkOptions(GroovyForkOptions forkOptions) Sets options for running the Groovy compiler in a separate process. |
void |
setJavaAnnotationProcessing(boolean javaAnnotationProcessing) Sets whether Java annotation processors should process annotations on stubs. |
void |
setKeepStubs(boolean keepStubs) Sets whether Java stubs for Groovy classes generated during Java/Groovy joint compilation should be kept after compilation has completed. |
void |
setListFiles(boolean listFiles) Sets whether to print which source files are to be compiled. |
void |
setOptimizationOptions(Map<String, Boolean> optimizationOptions) Sets optimization options for the Groovy compiler. |
void |
setStubDir(File stubDir) Sets the directory where Java stubs for Groovy classes will be stored during Java/Groovy joint compilation. |
void |
setVerbose(boolean verbose) Sets whether to turn on verbose output. |
Methods inherited from class | Name |
---|---|
class AbstractOptions |
define, excludeFromAntProperties, getAntPropertyName, getAntPropertyValue, optionMap |
class Object |
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Convenience method to set GroovyForkOptions with named parameter syntax.
Calling this method will set fork
to true
.
A Groovy script file that configures the compiler, allowing extensive control over how the code is compiled.
The script is executed as Groovy code, with the following context:
configuration
variable.This facilitates the following pattern:
withConfig(configuration) { // use compiler configuration DSL here }
For example, to activate type checking for all Groovy classes…
import groovy.transform.TypeChecked withConfig(configuration) { ast(TypeChecked) }
Please see the Groovy compiler customization builder documentation for more information about the compiler configuration DSL.
This feature is only available if compiling with Groovy 2.1 or later.
Returns the list of acceptable source file extensions. Only takes effect when compiling against
Groovy 1.7 or higher. Defaults to ImmutableList.of("java", "groovy")
.
Returns options for running the Groovy compiler in a separate process. These options only take effect
if fork
is set to true
.
Returns optimization options for the Groovy compiler. Allowed values for an option are true
and false
.
Only takes effect when compiling against Groovy 1.8 or higher.
Known options are:
Returns the directory where Java stubs for Groovy classes will be stored during Java/Groovy joint
compilation. Defaults to null
, in which case a temporary directory will be used.
Tells whether the compilation task should fail if compile errors occurred. Defaults to true
.
Tells whether to run the Groovy compiler in a separate process. Defaults to true
.
Whether the Groovy code should be subject to Java annotation processing.
Annotation processing of Groovy code works by having annotation processors visit the Java stubs generated by the Groovy compiler in order to support joint compilation of Groovy and Java source.
When set to true
, stubs will be unconditionally generated for all Groovy sources, and Java annotations processors will be executed on those stubs.
When this option is set to false
(the default), Groovy code will not be subject to annotation processing, but any joint compiled Java code will be.
If the compiler argument "-proc:none"
was specified as part of the Java compile options, the value of this flag will be ignored.
No annotation processing will be performed regardless, on Java or Groovy source.
Tells whether Java stubs for Groovy classes generated during Java/Groovy joint compilation
should be kept after compilation has completed. Useful for joint compilation debugging purposes.
Defaults to false
.
Tells whether to print which source files are to be compiled. Defaults to false
.
Tells whether to turn on verbose output. Defaults to false
.
Sets the path to the groovy configuration file.
Sets the source encoding. Defaults to UTF-8
.
Sets whether the compilation task should fail if compile errors occurred. Defaults to true
.
Sets the list of acceptable source file extensions. Only takes effect when compiling against
Groovy 1.7 or higher. Defaults to ImmutableList.of("java", "groovy")
.
Sets whether to run the Groovy compiler in a separate process. Defaults to true
.
Sets options for running the Groovy compiler in a separate process. These options only take effect
if fork
is set to true
.
Sets whether Java annotation processors should process annotations on stubs.
Defaults to false
.
Sets whether Java stubs for Groovy classes generated during Java/Groovy joint compilation
should be kept after compilation has completed. Useful for joint compilation debugging purposes.
Defaults to false
.
Sets whether to print which source files are to be compiled. Defaults to false
.
Sets optimization options for the Groovy compiler. Allowed values for an option are true
and false
.
Only takes effect when compiling against Groovy 1.8 or higher.
Sets the directory where Java stubs for Groovy classes will be stored during Java/Groovy joint
compilation. Defaults to null
, in which case a temporary directory will be used.
Sets whether to turn on verbose output. Defaults to false
.