Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EC74F17322 for ; Mon, 25 May 2015 11:33:53 +0000 (UTC) Received: (qmail 70979 invoked by uid 500); 25 May 2015 11:33:53 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 70947 invoked by uid 500); 25 May 2015 11:33:53 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 70938 invoked by uid 99); 25 May 2015 11:33:53 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 May 2015 11:33:53 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 75D99C84C6 for ; Mon, 25 May 2015 11:33:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id fOdJdl89mZtw for ; Mon, 25 May 2015 11:33:41 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id C89BC20BCC for ; Mon, 25 May 2015 11:33:40 +0000 (UTC) Received: (qmail 70816 invoked by uid 99); 25 May 2015 11:33:39 -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, 25 May 2015 11:33:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8790CE0044; Mon, 25 May 2015 11:33:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Date: Mon, 25 May 2015 11:33:39 -0000 Message-Id: <3662dba505aa4c51b85c39ed3364c34e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] incubator-ignite git commit: # ignie-456: contrib file Repository: incubator-ignite Updated Branches: refs/heads/ignite-456 42932de57 -> 1471f2003 # ignie-456: contrib file Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/1eec17e1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/1eec17e1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/1eec17e1 Branch: refs/heads/ignite-456 Commit: 1eec17e187ab0bcfd71e8ed890ac2d7d92e7fa2c Parents: 42932de Author: null Authored: Fri May 22 19:24:52 2015 +0300 Committer: null Committed: Fri May 22 19:24:52 2015 +0300 ---------------------------------------------------------------------- .gitignore | 1 + dev-tools/src/main/groovy/jiraslurp.groovy | 3 +++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1eec17e1/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 3da8e4d..896a0d8 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ target pom-installed.xml git-patch-prop-local.sh /slurp.sh +/contributors.txt http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1eec17e1/dev-tools/src/main/groovy/jiraslurp.groovy ---------------------------------------------------------------------- diff --git a/dev-tools/src/main/groovy/jiraslurp.groovy b/dev-tools/src/main/groovy/jiraslurp.groovy index 086c99a..78c58a2 100644 --- a/dev-tools/src/main/groovy/jiraslurp.groovy +++ b/dev-tools/src/main/groovy/jiraslurp.groovy @@ -52,6 +52,9 @@ final def TC_BUILD_EXCLUDE_LIST = envVariableAsList("BUILD_ID_EXCLUDES", ["Ignit def getContributors = { def contributorsFile = new File("../contributors.txt") + assert contributorsFile.exists(), "There was not found file ${contributorsFile.getAbsolutePath()}. " + + "It have to be line separated list of jira usernames" + contributorsList = contributorsFile.text.split('\n') println "Contributors list: $contributorsList"