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 2022/02/16 01:54:42 UTC

[groovy] branch master updated (ba0ad77 -> a2fbcd3)

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 ba0ad77  GROOVY-10468: Ability to define system properties for groovyc using CompilerConfiguration
     new 45e9440  GROOVY-10485: Bump jarjar to 1.8.1 (build dependency)
     new ac5599f  GROOVY-10486: Bump gradle versions plugin to 0.42.0 (build dependency)
     new a2fbcd3  GROOVY-10487: Bump gson (test dependency) to 2.9.0

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:
 build.gradle                         |  2 +-
 gradle/verification-metadata.xml     | 10 +++++-----
 subprojects/groovy-json/build.gradle |  2 +-
 versions.properties                  |  2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

[groovy] 03/03: GROOVY-10487: Bump gson (test dependency) to 2.9.0

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 a2fbcd3a751e6f47a68985f2e85dc2deb050f7b1
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Feb 16 11:54:35 2022 +1000

    GROOVY-10487: Bump gson (test dependency) to 2.9.0
---
 subprojects/groovy-json/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-json/build.gradle b/subprojects/groovy-json/build.gradle
index 9ae5951..3f909e5 100644
--- a/subprojects/groovy-json/build.gradle
+++ b/subprojects/groovy-json/build.gradle
@@ -33,7 +33,7 @@ dependencies {
         }
     }
     testRuntimeOnly project(':groovy-ant') // for JavadocAssertionTests
-    testRuntimeOnly 'com.google.code.gson:gson:2.8.9' // json-unit requires gson, jackson1 or jackson2
+    testRuntimeOnly 'com.google.code.gson:gson:2.9.0' // json-unit requires gson, jackson1 or jackson2
 }
 
 plugins.withId('eclipse') {

[groovy] 02/03: GROOVY-10486: Bump gradle versions plugin to 0.42.0 (build dependency)

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 ac5599ff7928e48d361621fa9b6400bedc8c2715
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Feb 16 11:49:46 2022 +1000

    GROOVY-10486: Bump gradle versions plugin to 0.42.0 (build dependency)
---
 build.gradle                     |  2 +-
 gradle/verification-metadata.xml | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle
index 39c54a5..99264cd 100644
--- a/build.gradle
+++ b/build.gradle
@@ -40,7 +40,7 @@ buildscript {
 
 plugins {
     id 'me.champeau.buildscan-recipes' version '0.2.3'
-    id 'com.github.ben-manes.versions' version '0.41.0'
+    id 'com.github.ben-manes.versions' version '0.42.0'
     id 'com.github.blindpirate.osgi' version '0.0.6'
     id 'org.sonarqube' version '3.0'
     id 'org.apache.groovy-core'
diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml
index 35df65a..e73360e 100644
--- a/gradle/verification-metadata.xml
+++ b/gradle/verification-metadata.xml
@@ -296,8 +296,8 @@
             <sha512 value="5ee2ef4c12888a48d7c830189d06ee8a653c7664a53c9b6fa935d4e7866b0454111f8092d7ece086ec80c61edab2856187a1e247873e5c8e4724efb02c37504b" origin="Generated by Gradle because artifact wasn't signed"/>
          </artifact>
       </component>
-      <component group="com.eed3si9n.jarjar" name="jarjar" version="1.8.0">
-         <artifact name="jarjar-1.8.0.jar">
+      <component group="com.eed3si9n.jarjar" name="jarjar" version="1.8.1">
+         <artifact name="jarjar-1.8.1.jar">
             <pgp value="ea313384ca0eba950ea017e937890e298d9a2bfa"/>
          </artifact>
       </component>
@@ -316,9 +316,9 @@
             <sha512 value="c1ab30aa9984aaf40e0def6474f535875abcca1568e6d495317d1092b782ac39d13505bbbd50877589610a59273ac89ade0b68eee0501961c1af17ca5d509178" origin="Generated by Gradle because artifact wasn't signed"/>
          </artifact>
       </component>
-      <component group="com.github.ben-manes" name="gradle-versions-plugin" version="0.41.0">
-         <artifact name="gradle-versions-plugin-0.41.0.jar">
-            <sha512 value="27a66a61915ce5267605968a4d4024671221a2620d0eaf501fb4021f68cd5a32a6ff1812ed7081351767562a3703f9ec48ea72c5845377bc5b4703d8740076dd" origin="Generated by Gradle because artifact wasn't signed"/>
+      <component group="com.github.ben-manes" name="gradle-versions-plugin" version="0.42.0">
+         <artifact name="gradle-versions-plugin-0.42.0.jar">
+            <sha512 value="1abeee4aa1a033f7a38333846b8b65ad6a859f1a3f4420f193a5a47a096eee032d2f769b1bd79a05f752ec3139a256cee9eed36984b5078cff651dac0412d352" origin="Generated by Gradle because artifact wasn't signed"/>
          </artifact>
       </component>
       <component group="com.github.javaparser" name="javaparser-core" version="3.23.0">

[groovy] 01/03: GROOVY-10485: Bump jarjar to 1.8.1 (build dependency)

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 45e9440a418eef5e1e84bb9e9901bc8affba8a88
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Feb 16 11:35:33 2022 +1000

    GROOVY-10485: Bump jarjar to 1.8.1 (build dependency)
---
 versions.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/versions.properties b/versions.properties
index a6b6fb8..d04ab92 100644
--- a/versions.properties
+++ b/versions.properties
@@ -29,7 +29,7 @@ gpars=1.2.1
 ivy=2.5.0
 jansi=2.4.0
 jackson=2.13.1
-jarjar=1.8.0
+jarjar=1.8.1
 javaParser=3.24.0
 jline=2.14.6
 jmh=1.27