You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by rp...@apache.org on 2020/04/30 22:41:29 UTC

[groovy] branch master updated: GROOVY-9432: improve wording for controlling picocli version in CliBuilder

This is an automated email from the ASF dual-hosted git repository.

rpopma pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a45106  GROOVY-9432: improve wording for controlling picocli version in CliBuilder
1a45106 is described below

commit 1a451067d1a844703268a9f6f813b87a3c0c0b46
Author: Remko Popma <re...@yahoo.com>
AuthorDate: Fri May 1 07:41:19 2020 +0900

    GROOVY-9432: improve wording for controlling picocli version in CliBuilder
---
 src/spec/doc/core-domain-specific-languages.adoc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/spec/doc/core-domain-specific-languages.adoc b/src/spec/doc/core-domain-specific-languages.adoc
index 45bbe27..da2b67f 100644
--- a/src/spec/doc/core-domain-specific-languages.adoc
+++ b/src/spec/doc/core-domain-specific-languages.adoc
@@ -1644,7 +1644,8 @@ include::{projectdir}/subprojects/groovy-cli-picocli/src/spec/test/builder/CliBu
 
 *Controlling the Picocli version*
 
-If necessary, you can use the `@Grab` annotation to control the version of picocli to use in `CliBuilder`.
+To use a specific version of picocli, add a dependency to that version in your build configuration.
+If running scripts using a pre-installed version of Groovy, use the `@Grab` annotation to control the version of picocli to use in `CliBuilder`.
 
 [source,groovy]
 ----