Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0.0.beta1
-
None
-
None
-
ubuntu, eclipse 3.4.0, ivyde trunk 12/24/2008
Description
I have been using the alpha version of IvyDE, and attempted to use a trunk build and encountered the following error when I load my existing ivyde eclipse based project:
The project name '.' from 'project://./ivysettings.xml' was not found (project 'pentaho-xul-gwt' and ivy file 'ivy.xml')
According to IVYDE-94, my "file://./ivysettings.xml" should automatically converted. Our problem is that we used "file:./ivysettings.xml". Here is my suggested fix in
IvyClasspathContainerConfiguration.java:readOldIvySettings():
replace:
return PROJECT_SCHEME_PREFIX + url.getPath();
with:
String urlpath = url.getPath();
if (urlpath != null && urlpath.length() > 1 && urlpath.startsWith("."))
return PROJECT_SCHEME_PREFIX + urlpath;
Thanks!
Will