You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ji...@codehaus.org on 2003/10/08 19:09:30 UTC

[jira] Updated: (MAVEN-899) Source classpath entry was generated as full path.

The following issue has been updated:

    Updater: dion gillard (mailto:dion@apache.org)
       Date: Wed, 8 Oct 2003 12:08 PM
    Comment:
Got a patch?
    Changes:
             Fix Version changed to 1.1
    ---------------------------------------------------------------------
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: Wed, 8 Oct 2003 12:08 PM
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org