Return-Path: X-Original-To: apmail-groovy-notifications-archive@minotaur.apache.org Delivered-To: apmail-groovy-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 714EB17813 for ; Tue, 9 Jun 2015 11:25:37 +0000 (UTC) Received: (qmail 47788 invoked by uid 500); 9 Jun 2015 11:25:37 -0000 Delivered-To: apmail-groovy-notifications-archive@groovy.apache.org Received: (qmail 47762 invoked by uid 500); 9 Jun 2015 11:25:37 -0000 Mailing-List: contact notifications-help@groovy.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.incubator.apache.org Delivered-To: mailing list notifications@groovy.incubator.apache.org Received: (qmail 47752 invoked by uid 99); 9 Jun 2015 11:25:37 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2015 11:25:37 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id E6F631A4869 for ; Tue, 9 Jun 2015 11:25:36 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id PudatpckuqEt for ; Tue, 9 Jun 2015 11:25:29 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id 62F1227621 for ; Tue, 9 Jun 2015 11:25:29 +0000 (UTC) Received: (qmail 47730 invoked by uid 99); 9 Jun 2015 11:25:29 -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; Tue, 09 Jun 2015 11:25:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EBBCEDFC80; Tue, 9 Jun 2015 11:25:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulk@apache.org To: notifications@groovy.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-groovy git commit: formatting Date: Tue, 9 Jun 2015 11:25:28 +0000 (UTC) Repository: incubator-groovy Updated Branches: refs/heads/GROOVY_2_4_X dcfdff636 -> 198805c9b formatting Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/198805c9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/198805c9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/198805c9 Branch: refs/heads/GROOVY_2_4_X Commit: 198805c9bdc86f1bf35a59762a78c47322cea9a8 Parents: dcfdff6 Author: Paul King Authored: Tue Jun 9 21:24:17 2015 +1000 Committer: Paul King Committed: Tue Jun 9 21:25:17 2015 +1000 ---------------------------------------------------------------------- src/spec/doc/tools-groovyc.adoc | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/198805c9/src/spec/doc/tools-groovyc.adoc ---------------------------------------------------------------------- diff --git a/src/spec/doc/tools-groovyc.adoc b/src/spec/doc/tools-groovyc.adoc index 2a89e97..153131f 100644 --- a/src/spec/doc/tools-groovyc.adoc +++ b/src/spec/doc/tools-groovyc.adoc @@ -23,21 +23,21 @@ a number of command line switches: [cols="<,<,<,<",options="header,footer"] |======================================================================= -|Short version |Long version |Description |Example -|-cp |-classpath, --classpath | Specify the compilation classpath. Must be the first +| Short version | Long version | Description | Example +| -cp | -classpath, --classpath | Specify the compilation classpath. Must be the first argument. | groovyc -cp lib/dep.jar MyClass.groovy -| |--sourcepath* |Directory where to find source files|groovyc -sourcepath src script.groovy -| |--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 -|-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 -|-b|--basescript|Base class name for scripts (must derive from Script)| -|-indy|--indy|Enables invokedynamic support. Requires Java 7+|groovyc --indy Person.groovy -||--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.5 -Jsource=1.5 A.groovy B.java -|-Fflag||Flags to be passed to `javac` if joint compilation is enabled|groovyc -j -Fnowarn A.groovy B.java +| | --sourcepath* | Directory where to find source files | groovyc -sourcepath src script.groovy +| | --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 +| -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 +| -b | --basescript | Base class name for scripts (must derive from Script)| +| -indy | --indy | Enables invokedynamic support. Requires Java 7+ | groovyc --indy Person.groovy +| | --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.5 -Jsource=1.5 A.groovy B.java +| -Fflag | | Flags to be passed to `javac` if joint compilation is enabled | groovyc -j -Fnowarn A.groovy B.java |======================================================================= *Notes:*