Return-Path: X-Original-To: apmail-brooklyn-dev-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EB664C5C4 for ; Tue, 23 Dec 2014 15:13:57 +0000 (UTC) Received: (qmail 55971 invoked by uid 500); 23 Dec 2014 15:13:57 -0000 Delivered-To: apmail-brooklyn-dev-archive@brooklyn.apache.org Received: (qmail 55931 invoked by uid 500); 23 Dec 2014 15:13:57 -0000 Mailing-List: contact dev-help@brooklyn.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.incubator.apache.org Delivered-To: mailing list dev@brooklyn.incubator.apache.org Received: (qmail 55920 invoked by uid 99); 23 Dec 2014 15:13:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2014 15:13:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 23 Dec 2014 15:13:55 +0000 Received: (qmail 55632 invoked by uid 99); 23 Dec 2014 15:13:35 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2014 15:13:35 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3B0D4A35670; Tue, 23 Dec 2014 15:13:35 +0000 (UTC) From: rdowner To: dev@brooklyn.incubator.apache.org Reply-To: dev@brooklyn.incubator.apache.org Message-ID: Subject: [GitHub] incubator-brooklyn pull request: Fixes to make_javadoc.sh script Content-Type: text/plain Date: Tue, 23 Dec 2014 15:13:35 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org GitHub user rdowner opened a pull request: https://github.com/apache/incubator-brooklyn/pull/424 Fixes to make_javadoc.sh script Three changes: 1. `BROOKLYN_VERSION` annotation to ensure that 0.7.0-SNAPSHOT reference is updated. 2. Javadoc output spews out a lot of noise to stdout and errors/warnings to stderr, but use of `tee` saves only stdout noise and not the useful error messages - changed to send errors to stdout, and what was stdout goes to /dev/null. 3. Abort if the required brooklyn-all-dependencies jar file has not been built. You can merge this pull request into a Git repository by running: $ git pull https://github.com/rdowner/incubator-brooklyn make-javadoc-update Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-brooklyn/pull/424.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #424 ---- commit 1a4f483c534010daf01e940cef158d772fef7885 Author: Richard Downer Date: 2014-12-23T14:55:09Z Fixes to make_javadoc.sh script Three changes: BROOKLYN_VERSION annotation to ensure that 0.7.0-SNAPSHOT reference is updated. Javadoc output spews out a lot of noise to stdout and errors/warnings to stderr, but use of 'tee' saves only stdout noise and not the useful error messages - changed to send errors to stdout, and what was stdout goes to /dev/null. Finally, abort if the required brooklyn-all-dependencies jar file has not been built. ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---