[ http://jira.codehaus.org/browse/MECLIPSE-261?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=148151#action_148151 ]
Barrie Treloar commented on MECLIPSE-261: ----------------------------------------- For Z: basedirPath.length() + 1=4 basedirPath =Z:\ absolutePath=Z:\target\main-output relative =arget\main-output relative fix=arget/main-output basedirPath.length() + 1=5 basedirPath =Z:\s absolutePath=Z:\s\target\main-output relative =target\main-output relative fix=target/main-output The problem is that the code assumes there is a directory at the end of the absolute basedir and therefore after the end of basedir, there is a file separator in the fileToAdd. As fileToAdd = new File( basedir, fileToAdd.getPath() ); Which for basedir = Z: basedirPath =Z:\ absolutePath=Z:\target\main-output and for basedirPath =Z:\s absolutePath=Z:\s\target\main-output In the case of Z: there is no file separator after so the +1 assumption causes the problem. > IdeUtils.toRelativeAndFixSeparator returns incomplete path > ---------------------------------------------------------- > > Key: MECLIPSE-261 > URL: http://jira.codehaus.org/browse/MECLIPSE-261 > Project: Maven 2.x Eclipse Plugin > Issue Type: Bug > Components: Core : Dependencies resolution and build path > Affects Versions: 2.3 > Environment: Windows XP, jdk 1.5.0_11-b03, maven 2.0.5 > Reporter: Marcio Paulo Guedes > Assignee: Arnaud Heritier > Attachments: .classpath, baseDirIsRoot.patch, > EclipseClasspathWriter.java, EclipsePlugin-2.4.zip, IdeUtils.java, patch.txt, > pom.xml > > > .classpath file is generated with incomplete path for classpathentry when > kind is "var". > Example: > <classpathentry kind="var" path="M2_REPO/gnl/ognl/2.6.9/ognl-2.6.9.jar"/> > when <classpathentry kind="var" > path="M2_REPO/ognl/ognl/2.6.9/ognl-2.6.9.jar"/> is expected. > It's caused by IdeUtils.toRelativeAndFixSeparator when basepath is not equal > absolutepath. Code on line 99 shifts the string 1 character to the right, > corrupting the result path. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira