PR: MPECLIPSE-32

make path relative for classpath includes


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115470 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2004-06-13 03:51:17 +00:00
parent e925d386c1
commit fefd6c5db9
2 changed files with 3 additions and 1 deletions

View File

@@ -53,7 +53,8 @@
<!-- add extra directories to be included in the classpath -->
<j:forEach var="res" items="${maven.eclipse.classpath.include.split}">
<classpathentry kind="src" path="${res}"/>
<maven:makeRelativePath var="srcDir" basedir="${basedir}" path="${res}" />
<classpathentry kind="src" path="${srcDir}"/>
</j:forEach>
<j:if test="${unitTestSourcesPresent}">

View File

@@ -26,6 +26,7 @@
<body>
<release version="1.8" date="In CVS">
<action dev="evenisse" type="fix" issue="MPECLIPSE-29" due-to="Marc-Antoine Garrigue">Fix classpath generation when tests are not present</action>
<action dev="evenisse" type="fix" issue="MPECLIPSE-32">classpath includes must be relative directories</action>
</release>
<release version="1.7" date="2004-05-15">
<action dev="dion" type="update" issue="MPECLIPSE-23" due-to="Miguel Griffa">Document the eclipse.dependency property of the dependency element</action>