You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2016/01/27 23:51:11 UTC

[2/2] groovy git commit: GROOVY-7736: Argfiles not documented for groovyc

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/d26bdd41
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/d26bdd41
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/d26bdd41

Branch: refs/heads/master
Commit: d26bdd416718988c966f94e7f4259eed8a777424
Parents: e1c147a
Author: pascalschumacher <pa...@gmx.net>
Authored: Wed Jan 27 23:50:35 2016 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Wed Jan 27 23:50:35 2016 +0100

----------------------------------------------------------------------
 src/spec/doc/tools-groovyc.adoc | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/d26bdd41/src/spec/doc/tools-groovyc.adoc
----------------------------------------------------------------------
diff --git a/src/spec/doc/tools-groovyc.adoc b/src/spec/doc/tools-groovyc.adoc
index dd6c6a6..42c789b 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
@@ -51,6 +52,7 @@ a number of command line switches:
 | -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
 | -pa | --parameters | Generates metadata for reflection on method parameter names. Requires Java 8+. | groovyc --parameters Person.groovy
+| @argfile | | Read options and source files from specified file. | groovyc @conf/args
 |=======================================================================
 
 *Notes:*