Return-Path: X-Original-To: apmail-groovy-notifications-archive@minotaur.apache.org Delivered-To: apmail-groovy-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3060218B12 for ; Mon, 8 Jun 2015 21:16:00 +0000 (UTC) Received: (qmail 935 invoked by uid 500); 8 Jun 2015 21:16:00 -0000 Delivered-To: apmail-groovy-notifications-archive@groovy.apache.org Received: (qmail 907 invoked by uid 500); 8 Jun 2015 21:15:59 -0000 Mailing-List: contact notifications-help@groovy.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.incubator.apache.org Delivered-To: mailing list notifications@groovy.incubator.apache.org Received: (qmail 898 invoked by uid 99); 8 Jun 2015 21:15:59 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2015 21:15:59 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 862FD1A4894 for ; Mon, 8 Jun 2015 21:15:59 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.77 X-Spam-Level: * X-Spam-Status: No, score=1.77 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id qgmn5VZV1d5z for ; Mon, 8 Jun 2015 21:15:58 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 7DB8643ACE for ; Mon, 8 Jun 2015 21:15:58 +0000 (UTC) Received: (qmail 892 invoked by uid 99); 8 Jun 2015 21:15:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2015 21:15:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DD2A6DFFCD; Mon, 8 Jun 2015 21:15:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pascalschumacher@apache.org To: notifications@groovy.incubator.apache.org Message-Id: <95fc38c2a12044169d4419532b5e03ac@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-groovy git commit: print used exclusions when running Rat Date: Mon, 8 Jun 2015 21:15:57 +0000 (UTC) Repository: incubator-groovy Updated Branches: refs/heads/master 698ebbdec -> ee779e34a print used exclusions when running Rat Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/ee779e34 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/ee779e34 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/ee779e34 Branch: refs/heads/master Commit: ee779e34a42442dc75ebd0614399c443e3732af5 Parents: 698ebbd Author: pascalschumacher Authored: Mon Jun 8 23:15:39 2015 +0200 Committer: pascalschumacher Committed: Mon Jun 8 23:15:39 2015 +0200 ---------------------------------------------------------------------- gradle/quality.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/ee779e34/gradle/quality.gradle ---------------------------------------------------------------------- diff --git a/gradle/quality.gradle b/gradle/quality.gradle index 2d0b365..29e115d 100644 --- a/gradle/quality.gradle +++ b/gradle/quality.gradle @@ -149,12 +149,14 @@ dependencies { // Standalone rat task - suitable for manually checking license info // TODO replace with rat gradle plugin to allow per subproject checking and better exclusion/license specification +String ratExcludesFilePath = 'config/licensing/rat-excludes.txt' task rat(type: JavaExec) { main = 'org.apache.rat.Report' classpath = files(configurations.rat) - args = ['-E', 'config/licensing/rat-excludes.txt', '--dir', '.'] + args = ['-E', ratExcludesFilePath, '--dir', '.'] doFirst { - println "Runs Apache RAT. Exclusions are defined in config/licensing/rat-excludes.txt file" + println "Runing Apache RAT. Exclusions are defined in: $ratExcludesFilePath" + println "Using the following exclusions:\n${new File(ratExcludesFilePath).text}" } }