Return-Path: X-Original-To: apmail-groovy-commits-archive@minotaur.apache.org Delivered-To: apmail-groovy-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3BB6D187BD for ; Wed, 27 Jan 2016 22:51:14 +0000 (UTC) Received: (qmail 43179 invoked by uid 500); 27 Jan 2016 22:51:11 -0000 Delivered-To: apmail-groovy-commits-archive@groovy.apache.org Received: (qmail 43150 invoked by uid 500); 27 Jan 2016 22:51:11 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 43141 invoked by uid 99); 27 Jan 2016 22:51:11 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Jan 2016 22:51:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EF05AE00DC; Wed, 27 Jan 2016 22:51:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pascalschumacher@apache.org To: commits@groovy.apache.org Date: Wed, 27 Jan 2016 22:51:11 -0000 Message-Id: <385ec97782b1411ea643a327f4d9f5c1@git.apache.org> In-Reply-To: <93d7cf133b644850ac62fde862ea9b54@git.apache.org> References: <93d7cf133b644850ac62fde862ea9b54@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Wed Jan 27 23:50:35 2016 +0100 Committer: pascalschumacher 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:*