brett 2004/06/12 20:51:17
Modified: eclipse/src/plugin-resources/templates classpath.jelly
eclipse/xdocs changes.xml
Log:
PR: MPECLIPSE-32
make path relative for classpath includes
Revision Changes Path
1.15 +2 -1
maven-plugins/eclipse/src/plugin-resources/templates/classpath.jelly
Index: classpath.jelly
===================================================================
RCS file:
/home/cvs/maven-plugins/eclipse/src/plugin-resources/templates/classpath.jelly,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- classpath.jelly 9 Jun 2004 05:00:20 -0000 1.14
+++ classpath.jelly 13 Jun 2004 03:51:17 -0000 1.15
@@ -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}">
1.21 +1 -0 maven-plugins/eclipse/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven-plugins/eclipse/xdocs/changes.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- changes.xml 9 Jun 2004 04:51:38 -0000 1.20
+++ changes.xml 13 Jun 2004 03:51:17 -0000 1.21
@@ -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>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]