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 47f26c7  configure task lazily as per Cedric's comment
47f26c7 is described below

commit 47f26c7300084742dafc2d90e4fbf52ea10f63e7
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Mar 21 21:15:36 2019 +1000

    configure task lazily as per Cedric's comment
---
 subprojects/binary-compatibility/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/binary-compatibility/build.gradle 
b/subprojects/binary-compatibility/build.gradle
index 7cb0a99..46dfc29 100644
--- a/subprojects/binary-compatibility/build.gradle
+++ b/subprojects/binary-compatibility/build.gradle
@@ -22,7 +22,7 @@ plugins {
     id("me.champeau.gradle.japicmp") version "0.2.6"
 }
 
-task(checkBinaryCompatibility) {
+def checkBinaryCompatibility = tasks.register("checkBinaryCompatibility") {
     description = "Generates binary compatibility reports"
 }
 

Reply via email to