Return-Path: Delivered-To: apmail-ant-notifications-archive@locus.apache.org Received: (qmail 37081 invoked from network); 23 May 2008 22:31:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 May 2008 22:31:32 -0000 Received: (qmail 4477 invoked by uid 500); 23 May 2008 22:31:29 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 4461 invoked by uid 500); 23 May 2008 22:31:29 -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 4452 invoked by uid 99); 23 May 2008 22:31:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 May 2008 15:31:28 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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, 23 May 2008 22:30:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6EF8A23889C1; Fri, 23 May 2008 15:30:58 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r659694 - in /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse: CHANGES.txt src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java Date: Fri, 23 May 2008 22:30:57 -0000 To: notifications@ant.apache.org From: hibou@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080523223058.6EF8A23889C1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hibou Date: Fri May 23 15:30:57 2008 New Revision: 659694 URL: http://svn.apache.org/viewvc?rev=659694&view=rev Log: IVYDE-79: Loading config causes BuildException and eclipse freaks out - just catch more throwable exeptions Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt?rev=659694&r1=659693&r2=659694&view=diff ============================================================================== --- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt (original) +++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt Fri May 23 15:30:57 2008 @@ -13,6 +13,7 @@ - IMPROVE: Simplify the resolve process (IVYDE-64) (thanks to Nicolas Lalevée) - IMPROVE: Add new target to build.xml to build the plugin with Ant (IVYDE-88) +- FIX: Loading config causes BuildException and eclipse freaks out (IVYDE-79) - FIX: NPE that break eclipse: the Java project becomes empty (IVYDE-84) - FIX: IvyDE is dependant on environment variable MOZILLA_FIVE_HOME (IVYDE-10) - FIX: no support of organization spelling (IVYDE-19) Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java?rev=659694&r1=659693&r2=659694&view=diff ============================================================================== --- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java (original) +++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java Fri May 23 15:30:57 2008 @@ -195,8 +195,10 @@ job.setRule(RESOLVE_EVENT_RULE); return job; } - } catch (Exception e) { + } catch (Throwable e) { + // IVYDE-79 : catch Throwable in order to catch java.lang.NoClassDefFoundError too Message.error(e.getMessage()); + IvyPlugin.log(IStatus.ERROR, "The creation of the job failed", e); return null; } }