GROOVY-7736: Argfiles not documented for groovyc Also documented -d groovyc option.
Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/b9867294 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/b9867294 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/b9867294 Branch: refs/heads/GROOVY_2_4_X Commit: b9867294863707facb2f95e3a2592ae078b61b4c Parents: ea2436e Author: pascalschumacher <[email protected]> Authored: Wed Jan 27 23:50:35 2016 +0100 Committer: pascalschumacher <[email protected]> Committed: Wed Jan 27 23:55:02 2016 +0100 ---------------------------------------------------------------------- src/spec/doc/tools-groovyc.adoc | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/b9867294/src/spec/doc/tools-groovyc.adoc ---------------------------------------------------------------------- diff --git a/src/spec/doc/tools-groovyc.adoc b/src/spec/doc/tools-groovyc.adoc index d42a9c0..2832b08 100644 --- a/src/spec/doc/tools-groovyc.adoc +++ b/src/spec/doc/tools-groovyc.adoc @@ -42,6 +42,7 @@ a number of command line switches: | | --temp | Temporary directory for the compiler | | | --encoding | Encoding of the source files | groovyc --encoding utf-8 script.groovy | | --help | Displays help for the command line groovyc tool | groovyc --help +| -d | | Specify where to place generated class files. | groovyc -d target Person.groovy | -v | --version | Displays the compiler version | groovyc -v | -e | --exception | Displays the stack trace in case of compilation error | groovyc -e script.groovy | -j | --jointCompilation* | Enables joint compilation | groovyc -j A.groovy B.java @@ -50,6 +51,7 @@ a number of command line switches: | | --configscript | Advanced compiler configuration script | groovyc --configscript config/config.groovy src/Person.groovy | -Jproperty=value | | Properties to be passed to `javac` if joint compilation is enabled | groovyc -j -Jtarget=1.6 -Jsource=1.6 A.groovy B.java | -Fflag | | Flags to be passed to `javac` if joint compilation is enabled | groovyc -j -Fnowarn A.groovy B.java +| @argfile | | Read options and source files from specified file. | groovyc @conf/args |======================================================================= *Notes:*
