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/08/31 05:47:58 UTC

[groovy] branch GROOVY_4_0_X updated: GROOVY-10736: Bump gson (test dependency) to 2.9.1

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

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


The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
     new a650f39b6e GROOVY-10736: Bump gson (test dependency) to 2.9.1
a650f39b6e is described below

commit a650f39b6e91bec4192b0478a545ba31412f9d28
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Aug 31 15:47:42 2022 +1000

    GROOVY-10736: Bump gson (test dependency) to 2.9.1
---
 gradle/verification-metadata.xml     | 8 ++++++++
 subprojects/groovy-json/build.gradle | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml
index bb6868db54..b34bbed430 100644
--- a/gradle/verification-metadata.xml
+++ b/gradle/verification-metadata.xml
@@ -63,6 +63,10 @@
       </ignored-keys>
       <trusted-keys>
          <trusted-key id="019082bc00e0324e2aef4cf00d3b328562a119a7" group="org.openjdk.jmh"/>
+         <trusted-key id="04543577d6a9cc626239c50c7ecbd740ff06aeb5">
+            <trusting group="org.glassfish.jaxb"/>
+            <trusting group="^com[.]sun($|([.].*))" regex="true"/>
+         </trusted-key>
          <trusted-key id="050a37a2e0577f4baa095b52602ec18d20c4661c">
             <trusting group="com.thoughtworks.xstream"/>
             <trusting group="com.thoughtworks.xstream" name="xstream"/>
@@ -117,6 +121,7 @@
          <trusted-key id="4f7e32d440ef90a83011a8fc6425559c47cc79c4" group="^javax[.]servlet($|([.].*))" regex="true"/>
          <trusted-key id="517b94f8d0a46317a28d8ab30da8a5ec02d11ead" group="net.sf.jopt-simple" name="jopt-simple" version="4.6"/>
          <trusted-key id="53c935821aa6a755bd337db53595395eb3d8e1ba" group="org.apache.logging.log4j"/>
+         <trusted-key id="5e7d42f58249a287bd7384da25a73bfc746e1035" group="net.sourceforge.htmlunit"/>
          <trusted-key id="6214760097dc5cfad0175ac2c9fbaa83a8753994">
             <trusting group="com.fasterxml.jackson.core"/>
             <trusting group="^com[.]fasterxml($|([.].*))" regex="true"/>
@@ -208,6 +213,7 @@
             <trusting group="org.testng"/>
          </trusted-key>
          <trusted-key id="e3a9f95079e84ce201f7cf60bede11eaf1164480" group="org.hamcrest"/>
+         <trusted-key id="e5b8247af8a619a28f90fdfc9ff25980f5ba7e4f" group="xalan"/>
          <trusted-key id="e77417ac194160a3fabd04969a259c7ee636c5ed" group="com.google.errorprone"/>
          <trusted-key id="e85aed155021af8a6c6b7a4a7c7d8456294423ba" group="org.objenesis"/>
          <trusted-key id="ea23db1360d9029481e7f2efecdfea3cb4493b94">
@@ -1234,6 +1240,7 @@
       </component>
       <component group="org.jvnet.staxex" name="stax-ex" version="1.8.1">
          <artifact name="stax-ex-1.8.1.jar">
+            <pgp value="04543577d6a9cc626239c50c7ecbd740ff06aeb5"/>
             <sha512 value="d060ea5dcc81508a1078bd0ed947553a5652a5a78da76cd00dc2e384dca014166dfe92777fceb7d7868699894d7e40ecef99fac7771372025bfd7f1fa3e2fe32" origin="Generated by Gradle because a key couldn't be downloaded"/>
          </artifact>
       </component>
@@ -1382,6 +1389,7 @@
       </component>
       <component group="xerces" name="xercesImpl" version="2.12.2">
          <artifact name="xercesImpl-2.12.2.jar">
+            <pgp value="6cb87b18a453990eac9453f87d713008cc07e9ad"/>
             <sha512 value="bfd21f2350bf0bb546a68d3303f28c6a15cee1e630138c169344c3f65fe39a15e61c6ff4e5239f38f2f1f9e488eff4d5565a4a0774263064ab6a30aa9fcaaed3" origin="Generated by Gradle because a key couldn't be downloaded"/>
          </artifact>
       </component>
diff --git a/subprojects/groovy-json/build.gradle b/subprojects/groovy-json/build.gradle
index de02faf881..2683a5580d 100644
--- a/subprojects/groovy-json/build.gradle
+++ b/subprojects/groovy-json/build.gradle
@@ -34,7 +34,7 @@ dependencies {
         }
     }
     testRuntimeOnly projects.groovyAnt // for JavadocAssertionTests
-    testRuntimeOnly 'com.google.code.gson:gson:2.9.0' // json-unit requires gson, jackson1 or jackson2
+    testRuntimeOnly 'com.google.code.gson:gson:2.9.1' // json-unit requires gson, jackson1 or jackson2
 }
 
 plugins.withId('eclipse') {