Command-line compiler (aka. groovyc).
Modifiers | Name | Description |
---|---|---|
static class |
FileSystemCompiler.CompilationOptions |
@since 2.5 |
Constructor and description |
---|
FileSystemCompiler
(CompilerConfiguration configuration) |
FileSystemCompiler
(CompilerConfiguration configuration, CompilationUnit cu) |
Type Params | Return Type | Name and description |
---|---|---|
|
static int |
checkFiles(String[] filenames) |
|
static void |
commandLineCompile(String[] args) Same as main(args) except that exceptions are thrown out instead of causing the VM to exit. |
|
static void |
commandLineCompile(String[] args, boolean lookupUnnamedFiles) Same as main(args) except that exceptions are thrown out instead of causing the VM to exit and the lookup for .groovy files can be controlled |
|
static void |
commandLineCompileWithErrorHandling(String[] args, boolean lookupUnnamedFiles) Primary entry point for compiling from the command line (using the groovyc script). |
|
void |
compile(String[] paths) |
|
void |
compile(File[] files) |
|
static CommandLine |
configureParser(FileSystemCompiler.CompilationOptions options) |
|
static Options |
createCompilationOptions() |
|
static File |
createTempDir() Creates a temporary directory in the default temporary directory (as specified by the system property java.io.tmpdir. |
|
static void |
deleteRecursive(File file) |
|
static void |
displayHelp() Prints the usage help message for CompilationOptions to stderr. |
|
static void |
displayHelp(PrintWriter writer) Prints the usage help message for the CompilationOptions to the specified PrintWriter. |
|
static void |
displayHelp(Options options) @deprecated use displayHelp(PrintWriter) instead |
|
static void |
displayVersion() Prints version information to stderr. |
|
static void |
displayVersion(PrintWriter writer) Prints version information to the specified PrintWriter. |
|
static void |
doCompilation(CompilerConfiguration configuration, CompilationUnit unit, String[] filenames) |
|
static void |
doCompilation(CompilerConfiguration configuration, CompilationUnit unit, String[] filenames, boolean lookupUnnamedFiles) |
|
static CompilerConfiguration |
generateCompilerConfigurationFromOptions(CommandLine cli) |
|
static String[] |
generateFileNamesFromOptions(CommandLine cli) |
|
static void |
main(String[] args) Primary entry point for compiling from the command line (using the groovyc script). |
|
static boolean |
validateFiles(String[] filenames) |
Same as main(args) except that exceptions are thrown out instead of causing the VM to exit.
Same as main(args) except that exceptions are thrown out instead of causing the VM to exit and the lookup for .groovy files can be controlled
Primary entry point for compiling from the command line (using the groovyc script).
If calling inside a process and you don't want the JVM to exit on an error call commandLineCompile(String[]), which this method simply wraps
args
- command line argumentslookupUnnamedFiles
- do a lookup for .groovy files not part of
the given list of files to compileCreates a temporary directory in the default temporary directory (as specified by the system property java.io.tmpdir.
Prints the usage help message for CompilationOptions to stderr.
Prints the usage help message for the CompilationOptions to the specified PrintWriter.
Prints version information to stderr.
Prints version information to the specified PrintWriter.
Primary entry point for compiling from the command line (using the groovyc script).
If calling inside a process and you don't want the JVM to exit on an error call commandLineCompile(String[]), which this method simply wraps
args
- command line argumentsCopyright © 2003-2019 The Apache Software Foundation. All rights reserved.