Hi
Is it possible to specify a CompileConfig option when compiling groovy code? I would like to add CompileStatic annotations to source files with an AST transformation.
i.e.
withConfig(configuration){
source(extensions: [‘sgroovy’,‘sg’]) {
ast(CompileStatic)
} }
Thanks in advance
Brian