Return-Path: X-Original-To: apmail-ant-notifications-archive@minotaur.apache.org Delivered-To: apmail-ant-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 A66F49A74 for ; Fri, 1 Jun 2012 19:19:18 +0000 (UTC) Received: (qmail 68410 invoked by uid 500); 1 Jun 2012 19:19:18 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 68377 invoked by uid 500); 1 Jun 2012 19:19:18 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 68370 invoked by uid 99); 1 Jun 2012 19:19:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2012 19:19:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jun 2012 19:19:16 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 60BBE2388865 for ; Fri, 1 Jun 2012 19:18:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1345316 - in /ant/core/trunk: WHATSNEW src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java Date: Fri, 01 Jun 2012 19:18:54 -0000 To: notifications@ant.apache.org From: jglick@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120601191854.60BBE2388865@eris.apache.org> Author: jglick Date: Fri Jun 1 19:18:53 2012 New Revision: 1345316 URL: http://svn.apache.org/viewvc?rev=1345316&view=rev Log: #53347: by default fails when run on JDK 8. Follow-up to revision 1236803. Modified: ant/core/trunk/WHATSNEW ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java Modified: ant/core/trunk/WHATSNEW URL: http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?rev=1345316&r1=1345315&r2=1345316&view=diff ============================================================================== --- ant/core/trunk/WHATSNEW (original) +++ ant/core/trunk/WHATSNEW Fri Jun 1 19:18:53 2012 @@ -28,6 +28,9 @@ Fixed bugs: system properties from the command line (or from a property file). Bugzilla Report 51792 + * by default fails when run on JDK 8. + Bugzilla Report 53347. + Other changes: -------------- Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java?rev=1345316&r1=1345315&r2=1345316&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java Fri Jun 1 19:18:53 2012 @@ -120,7 +120,8 @@ public final class CompilerAdapterFactor || compilerType.equalsIgnoreCase("javac1.4") || compilerType.equalsIgnoreCase("javac1.5") || compilerType.equalsIgnoreCase("javac1.6") - || compilerType.equalsIgnoreCase("javac1.7")) { + || compilerType.equalsIgnoreCase("javac1.7") + || compilerType.equalsIgnoreCase("javac1.8")) { // does the modern compiler exist? if (doesModernCompilerExist()) { return new Javac13();