From commits-return-108472-archive-asf-public=cust-asf.ponee.io@lucene.apache.org Sun Jun 2 00:18:50 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 [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7689D180667 for ; Sun, 2 Jun 2019 02:18:50 +0200 (CEST) Received: (qmail 86360 invoked by uid 500); 2 Jun 2019 00:18:49 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 86337 invoked by uid 99); 2 Jun 2019 00:18:49 -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; Sun, 02 Jun 2019 00:18:49 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E20318A7B4; Sun, 2 Jun 2019 00:18:45 +0000 (UTC) Date: Sun, 02 Jun 2019 00:18:47 +0000 To: "commits@lucene.apache.org" Subject: [lucene-solr] 02/02: SOLR-13452: Add group and desc for testTimes task. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: markrmiller@apache.org In-Reply-To: <155943472570.14060.4195496810950233941@gitbox.apache.org> References: <155943472570.14060.4195496810950233941@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: lucene-solr X-Git-Refname: refs/heads/jira/SOLR-13452_gradle_3 X-Git-Reftype: branch X-Git-Rev: 23cc01b7f33ba16755bf37143d11d0f8b8c3fb1f X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190602001845.E20318A7B4@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. markrmiller pushed a commit to branch jira/SOLR-13452_gradle_3 in repository https://gitbox.apache.org/repos/asf/lucene-solr.git commit 23cc01b7f33ba16755bf37143d11d0f8b8c3fb1f Author: markrmiller AuthorDate: Sat Jun 1 19:18:29 2019 -0500 SOLR-13452: Add group and desc for testTimes task. --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e6f801a..f603aa5 100644 --- a/build.gradle +++ b/build.gradle @@ -135,7 +135,8 @@ configure(rootProject) { task testTimes(type: org.apache.lucene.gradle.JUnit4) { - + group = 'Tests' + description = "Show the slowest tests (averages)." } }