The following issue has been updated: Updater: Chris Rauschuber (mailto:[EMAIL PROTECTED]) Date: Thu, 23 Oct 2003 9:02 AM Comment: This should fix it. It uses maven:makeRelativePath, which I found in the 1.4 version of the eclipse plugin. Changes: Attachment changed to maven_eclipse_jira_899.txt --------------------------------------------------------------------- For a full history of the issue, see:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-899&page=history --------------------------------------------------------------------- View the issue: http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-899 Here is an overview of the issue: --------------------------------------------------------------------- Key: MAVEN-899 Summary: Source classpath entry was generated as full path. Type: Bug Status: Unassigned Priority: Major Time Spent: Unknown Remaining: Unknown Project: maven Components: plugin-eclipse Fix Fors: 1.1 Versions: 1.0-rc1 Assignee: Reporter: Makoto Shimomura Created: Mon, 6 Oct 2003 11:39 PM Updated: Thu, 23 Oct 2003 9:02 AM Environment: Windows 2000, cygwin 1.5.5-1, J2SDK 1.4.2 Description: Source classpathentry of generated .classpath was full path. In beta-10, it was relative path correctly. Project directory is /cygdrive/d/eclipse/workspace/myproj classpathentry generated by 1.0-rc1: <classpathentry kind="src" path="D:\eclipse\workspace\myproj\src\java"> </classpathentry> <classpathentry kind="src" path="D:\eclipse\workspace\myproj\src\test"> </classpathentry> classpathentry generated by 1.0-beta-10: <classpathentry kind="src" path="src\java"> </classpathentry> <classpathentry kind="src" path="src\test"> </classpathentry> build.properties and ~/build.properties are not exists. --- project.properties --- maven.xdoc.date=left maven.xdoc.version=${pom.currentVersion} -------------------------- --- project.xml ---- <project> : : <build> <sourceDirectory>src/java</sourceDirectory> <unitTestSourceDirectory>src/test</unitTestSourceDirectory> <unitTest> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/NaughtyTest.java</exclude> </excludes> </unitTest> <resources> <resource> <directory>src/conf</directory> <includes> <include>*.properties</include> </includes> </resource> </resources> </build> </project> -------------------------- --------------------------------------------------------------------- JIRA INFORMATION: 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 If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]