From 2f1dc7dbe9aedba7171a38f197c0e901f319365b Mon Sep 17 00:00:00 2001 From: Edgar Asatryan Date: Sun, 5 Sep 2021 04:33:44 +0400 Subject: [PATCH] chore: Polish build.gradle. --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 554d00b..d86e60a 100644 --- a/build.gradle +++ b/build.gradle @@ -19,13 +19,14 @@ ext { junitVersion = '5.8.0-RC1' commonIoVersion = '1.3.2' assertJVersion = '3.20.2' + jsonPathAssertVersion = '2.6.0' lombokDependency = 'org.projectlombok:lombok:1.18.20' } dependencies { /** AssertJ & Friends */ testImplementation "org.assertj:assertj-core:$assertJVersion" - testImplementation group: 'com.jayway.jsonpath', name: 'json-path-assert', version: '2.6.0' + testImplementation "com.jayway.jsonpath:json-path-assert:$jsonPathAssertVersion" testImplementation "org.apache.commons:commons-io:$commonIoVersion"