Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-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 2B7AA18368 for ; Wed, 18 Nov 2015 00:49:38 +0000 (UTC) Received: (qmail 23861 invoked by uid 500); 18 Nov 2015 00:49:38 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 23823 invoked by uid 500); 18 Nov 2015 00:49:38 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 23814 invoked by uid 99); 18 Nov 2015 00:49:37 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Nov 2015 00:49:37 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 8F366C05AD for ; Wed, 18 Nov 2015 00:49:37 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 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, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id or03Cyxv8WO7 for ; Wed, 18 Nov 2015 00:49:30 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id 1AFD022F1D for ; Wed, 18 Nov 2015 00:49:30 +0000 (UTC) Received: (qmail 23670 invoked by uid 99); 18 Nov 2015 00:49:30 -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; Wed, 18 Nov 2015 00:49:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DC546DFF7E; Wed, 18 Nov 2015 00:49:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: upthewaterspout@apache.org To: commits@geode.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-geode git commit: GEODE-570 Fix javadoc to ignore strict checking with JDK 8 Date: Wed, 18 Nov 2015 00:49:29 +0000 (UTC) Repository: incubator-geode Updated Branches: refs/heads/develop 3fc299230 -> 90b9a632b GEODE-570 Fix javadoc to ignore strict checking with JDK 8 Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/90b9a632 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/90b9a632 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/90b9a632 Branch: refs/heads/develop Commit: 90b9a632b9738319fc7a7fddb93b6bef9ff57f7d Parents: 3fc2992 Author: Nitin Lamba Authored: Tue Nov 17 11:54:57 2015 -0800 Committer: Dan Smith Committed: Tue Nov 17 16:45:57 2015 -0800 ---------------------------------------------------------------------- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/90b9a632/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index a186710..e51a79b 100755 --- a/build.gradle +++ b/build.gradle @@ -290,7 +290,11 @@ subprojects { } javadoc.classpath += configurations.provided - + + javadoc { + options.addStringOption('Xdoclint:none', '-quiet') + } + dependencies { compile 'org.springframework:spring-aop:' + project.'springframework.version' compile 'org.springframework:spring-beans:' + project.'springframework.version'