You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2009/05/30 11:54:50 UTC

svn commit: r780223 - in /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse: CHANGES.txt src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java

Author: hibou
Date: Sat May 30 09:54:50 2009
New Revision: 780223

URL: http://svn.apache.org/viewvc?rev=780223&view=rev
Log:
IVYDE-179:
 - make IvyDE behave like Eclipse internally, even it seems deprecated

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/IvyResolveJob.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=780223&r1=780222&r2=780223&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt Sat May 30 09:54:50 2009
@@ -36,6 +36,7 @@
 - FIX: Add Ivy Library command adds classpath container even though it already exists (IVYDE-164)
 - FIX: Importing a project with Ivy configured with an embedded ivysettings fails (IVYDE-181)
 - FIX: Importing a project with Ivy fails if properties files are specified in settings (IVYDE-182)
+- FIX: IvyDE does not set javadoc archive path properly (IVYDE-179)
 
   version 2.0.0 beta1
 ==========================

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java?rev=780223&r1=780222&r2=780223&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java Sat May 30 09:54:50 2009
@@ -630,7 +630,7 @@
             if (path != null) {
                 String u;
                 try {
-                    u = "jar:" + path.toFile().toURI().toURL().toExternalForm() + "!/";
+                    u = "jar:" + path.toFile().toURL().toExternalForm() + "!/";
                     try {
                         url = new URL(u);
                     } catch (MalformedURLException e) {