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 02:46:10 UTC

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

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

commit 5caeb326123e6526d75d6d3040096c5d9563770e
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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/subprojects/groovy-json/build.gradle b/subprojects/groovy-json/build.gradle
index 7190c9c..3f909e5 100644
--- a/subprojects/groovy-json/build.gradle
+++ b/subprojects/groovy-json/build.gradle
@@ -32,8 +32,8 @@ dependencies {
             requireCapability 'org.apache.groovy:groovy-grapes'
         }
     }
-    testRuntimeOnly project(':groovy-ant')
-    testRuntimeOnly 'com.google.code.gson:gson:2.8.9' // json-unit requires gson, jackson1 or jackson2
+    testRuntimeOnly project(':groovy-ant') // for JavadocAssertionTests
+    testRuntimeOnly 'com.google.code.gson:gson:2.9.0' // json-unit requires gson, jackson1 or jackson2
 }
 
 plugins.withId('eclipse') {