Return-Path: Delivered-To: apmail-ant-notifications-archive@locus.apache.org Received: (qmail 98831 invoked from network); 8 Feb 2008 15:58:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Feb 2008 15:58:08 -0000 Received: (qmail 33938 invoked by uid 500); 8 Feb 2008 15:58:01 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 33916 invoked by uid 500); 8 Feb 2008 15:58:01 -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 33907 invoked by uid 99); 8 Feb 2008 15:58:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Feb 2008 07:58:01 -0800 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Feb 2008 15:57:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5E1E51A9832; Fri, 8 Feb 2008 07:57:47 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r619920 - /ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java Date: Fri, 08 Feb 2008 15:57:46 -0000 To: notifications@ant.apache.org From: xavier@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080208155747.5E1E51A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: xavier Date: Fri Feb 8 07:57:44 2008 New Revision: 619920 URL: http://svn.apache.org/viewvc?rev=619920&view=rev Log: update with latest changes in Ivy Modified: ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java Modified: ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java?rev=619920&r1=619919&r2=619920&view=diff ============================================================================== --- ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java (original) +++ ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java Fri Feb 8 07:57:44 2008 @@ -30,7 +30,6 @@ import org.apache.ivy.core.module.descriptor.Artifact; import org.apache.ivy.core.module.descriptor.DefaultArtifact; import org.apache.ivy.core.module.descriptor.ModuleDescriptor; -import org.apache.ivy.core.module.id.ModuleId; import org.apache.ivy.core.module.id.ModuleRevisionId; import org.apache.ivy.core.report.ArtifactDownloadReport; import org.apache.ivy.core.report.ResolveReport; @@ -487,8 +486,8 @@ } } else { Message.info("checking " + metaType + " for " + artifact); - ArtifactDownloadReport metaAdr = _ivy.getResolveEngine().download(metaArtifact, - false); + ArtifactDownloadReport metaAdr = _ivy.getResolveEngine() + .download(metaArtifact, new DownloadOptions()); if (metaAdr.getLocalFile() != null && metaAdr.getLocalFile().exists()) { return new Path(metaAdr.getLocalFile().getAbsolutePath()); } else {