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/05/15 01:00:41 UTC

[groovy] 02/02: minor refactor: add explanation to build

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 da51a4517b2e5928596c68f0167608bfa101be5d
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sun May 15 11:00:24 2022 +1000

    minor refactor: add explanation to build
---
 build.gradle                         | 1 +
 subprojects/groovy-json/build.gradle | 1 +
 2 files changed, 2 insertions(+)

diff --git a/build.gradle b/build.gradle
index 3247d11c54..a3f0bc9575 100644
--- a/build.gradle
+++ b/build.gradle
@@ -163,6 +163,7 @@ dependencies {
     testImplementation "net.jcip:jcip-annotations:${versions.jcipAnnotations}"
 
     testRuntimeOnly(project(":")) {
+        because "Tests are using Grapes"
         capabilities {
             requireCapability 'org.apache.groovy:groovy-grapes'
         }
diff --git a/subprojects/groovy-json/build.gradle b/subprojects/groovy-json/build.gradle
index c369c5e4a8..0206395cec 100644
--- a/subprojects/groovy-json/build.gradle
+++ b/subprojects/groovy-json/build.gradle
@@ -28,6 +28,7 @@ dependencies {
     testImplementation 'net.javacrumbs.json-unit:json-unit:2.33.0'
 
     testRuntimeOnly project(':'), {
+        because "Tests are using Grapes"
         capabilities {
             requireCapability 'org.apache.groovy:groovy-grapes'
         }