Uploaded image for project: 'IvyDE (Retired)'
  1. IvyDE (Retired)
  2. IVYDE-143

Conversion from "file:" to "project:" fails

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.0.0.beta1
    • 2.0.0.final
    • 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("."))

      { urlpath = urlpath.substring(1); }

      return PROJECT_SCHEME_PREFIX + urlpath;

      Thanks!

      Will

      Attachments

        Activity

          People

            hibou Nicolas Lalevée
            willgorman Will Gorman
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: