From commits-return-8137-archive-asf-public=cust-asf.ponee.io@groovy.apache.org Thu Mar 21 11:15:48 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4FBC5180621 for ; Thu, 21 Mar 2019 12:15:48 +0100 (CET) Received: (qmail 57931 invoked by uid 500); 21 Mar 2019 11:15:47 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 57922 invoked by uid 99); 21 Mar 2019 11:15:47 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Mar 2019 11:15:47 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id C86CB85085; Thu, 21 Mar 2019 11:15:46 +0000 (UTC) Date: Thu, 21 Mar 2019 11:15:46 +0000 To: "commits@groovy.apache.org" Subject: [groovy] branch master updated: configure task lazily as per Cedric's comment MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155316694670.6040.16415098954477958194@gitbox.apache.org> From: paulk@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: groovy X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 325653a74d0769f3b77c269911ee714e0193a1ab X-Git-Newrev: 47f26c7300084742dafc2d90e4fbf52ea10f63e7 X-Git-Rev: 47f26c7300084742dafc2d90e4fbf52ea10f63e7 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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" }