You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by xa...@apache.org on 2008/02/08 16:57:46 UTC

svn commit: r619920 - /ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainer.java

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 {