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 2019/02/05 03:30:38 UTC

[groovy] branch master updated (b1775a3 -> 3e6fe34)

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

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


    from b1775a3  GROOVY-8980: Bump picocli to 3.9.3(closes #872)
     new c00fc20  add important tag
     new 14da8d1  escape adoc replacement
     new 3e6fe34  add line breaks (maven xml formatting) (closes #871)

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/spec/doc/core-getting-started.adoc | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)


[groovy] 01/03: add important tag

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c00fc20e6fd702e4be0fa096644213d30c003995
Author: energister <en...@users.noreply.github.com>
AuthorDate: Mon Feb 4 21:54:44 2019 +0300

    add important tag
    
    Avoid "Failure to find org.codehaus.groovy:groovy-all:jar:2.5.5 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced" compile error (fat JAR `groovy-all-x.y.z.jar` isn't available since Groovy 2.5.0)
---
 src/spec/doc/core-getting-started.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/spec/doc/core-getting-started.adoc b/src/spec/doc/core-getting-started.adoc
index beb6ce5..e1efd7a 100644
--- a/src/spec/doc/core-getting-started.adoc
+++ b/src/spec/doc/core-getting-started.adoc
@@ -80,6 +80,7 @@ If you wish to embed Groovy in your application, you may just prefer to point to
 |<groupId>org.codehaus.groovy</groupId>
 <artifactId>groovy-all</artifactId>
 <version>{groovy-full-version}</version>
+<type>pom</type> <!-- required JUST since Groovy 2.5.0 -->
 |The core plus all the modules. Optional dependencies are marked as optional. You may need to include some of the optional dependencies to use some features of Groovy, e.g. AntBuilder, GroovyMBeans, etc.
 |===
 


[groovy] 02/03: escape adoc replacement

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 14da8d168116f5f030cc8cbc2fd605174220cc3f
Author: energister <en...@users.noreply.github.com>
AuthorDate: Mon Feb 4 22:22:05 2019 +0300

    escape adoc replacement
---
 src/spec/doc/core-getting-started.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/spec/doc/core-getting-started.adoc b/src/spec/doc/core-getting-started.adoc
index e1efd7a..d023289 100644
--- a/src/spec/doc/core-getting-started.adoc
+++ b/src/spec/doc/core-getting-started.adoc
@@ -80,7 +80,7 @@ If you wish to embed Groovy in your application, you may just prefer to point to
 |<groupId>org.codehaus.groovy</groupId>
 <artifactId>groovy-all</artifactId>
 <version>{groovy-full-version}</version>
-<type>pom</type> <!-- required JUST since Groovy 2.5.0 -->
+<type>pom</type> <!-- required JUST since Groovy 2.5.0 +-->+
 |The core plus all the modules. Optional dependencies are marked as optional. You may need to include some of the optional dependencies to use some features of Groovy, e.g. AntBuilder, GroovyMBeans, etc.
 |===
 


[groovy] 03/03: add line breaks (maven xml formatting) (closes #871)

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3e6fe34792880fc185e6ce0e4e590694d3dbff6a
Author: energister <en...@users.noreply.github.com>
AuthorDate: Mon Feb 4 22:24:52 2019 +0300

    add line breaks (maven xml formatting) (closes #871)
---
 src/spec/doc/core-getting-started.adoc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/spec/doc/core-getting-started.adoc b/src/spec/doc/core-getting-started.adoc
index d023289..588c741 100644
--- a/src/spec/doc/core-getting-started.adoc
+++ b/src/spec/doc/core-getting-started.adoc
@@ -65,21 +65,21 @@ If you wish to embed Groovy in your application, you may just prefer to point to
 |Explanation
 
 |&#39;org.codehaus.groovy:groovy:{groovy-full-version}'
-|<groupId>org.codehaus.groovy</groupId>
-<artifactId>groovy</artifactId> 
+|<groupId>org.codehaus.groovy</groupId> +
+<artifactId>groovy</artifactId> +
 <version>{groovy-full-version}</version>
 |Just the core of groovy without the modules (see below).
 
 |&#39;org.codehaus.groovy:groovy-$module:{groovy-full-version}'
-|<groupId>org.codehaus.groovy</groupId>
-<artifactId>groovy-$module</artifactId>
+|<groupId>org.codehaus.groovy</groupId> +
+<artifactId>groovy-$module</artifactId> +
 <version>{groovy-full-version}</version>
 |"$module" stands for the different optional groovy modules "ant", "bsf", "console", "docgenerator", "groovydoc", "groovysh", "jmx", "json", "jsr223", "servlet", "sql", "swing", "test", "testng" and "xml". Example: <artifactId>groovy-sql</artifactId>
 
 |&#39;org.codehaus.groovy:groovy-all:{groovy-full-version}'
-|<groupId>org.codehaus.groovy</groupId>
-<artifactId>groovy-all</artifactId>
-<version>{groovy-full-version}</version>
+|<groupId>org.codehaus.groovy</groupId> +
+<artifactId>groovy-all</artifactId> +
+<version>{groovy-full-version}</version> +
 <type>pom</type> <!-- required JUST since Groovy 2.5.0 +-->+
 |The core plus all the modules. Optional dependencies are marked as optional. You may need to include some of the optional dependencies to use some features of Groovy, e.g. AntBuilder, GroovyMBeans, etc.
 |===