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 2020/09/09 08:53:23 UTC

[groovy] branch master updated: update json-unit version

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


The following commit(s) were added to refs/heads/master by this push:
     new 8428092  update json-unit version
8428092 is described below

commit 84280924372dcb66b57d8db15e88b652e4965b1a
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Sep 9 18:53:13 2020 +1000

    update json-unit version
---
 .../groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy b/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy
index 0e00b4b..4c44743 100644
--- a/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy
+++ b/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy
@@ -24,10 +24,9 @@ class StreamingJsonBuilderTest extends GroovyTestCase {
 
     void testStreamingJsonBuilder() {
         assertScript """
+            @Grab('com.google.code.gson:gson:2.8.6') //required by json-unit
+            @Grab('net.javacrumbs.json-unit:json-unit:2.9.0')
             import groovy.json.*
-            @Grapes([
-                @Grab('com.google.code.gson:gson:2.3.1'), //required by json-unit
-                @Grab('net.javacrumbs.json-unit:json-unit:1.5.2')])
             import net.javacrumbs.jsonunit.JsonAssert
 
             // tag::json_string[]