You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/04/05 23:51:33 UTC

svn commit: r391824 - /maven/maven-1/plugins/trunk/test/plugin.jelly

Author: aheritier
Date: Wed Apr  5 14:51:31 2006
New Revision: 391824

URL: http://svn.apache.org/viewcvs?rev=391824&view=rev
Log:
MPTEST-49: Replace the hardcoded ':' by ${path.separator}. It didn't work on windows because of the drive in the directory name. For example : D:\.....

Modified:
    maven/maven-1/plugins/trunk/test/plugin.jelly

Modified: maven/maven-1/plugins/trunk/test/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/test/plugin.jelly?rev=391824&r1=391823&r2=391824&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/test/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/test/plugin.jelly Wed Apr  5 14:51:31 2006
@@ -43,8 +43,8 @@
     </j:if>
     <ant:path id="_searchdir" location="${maven.test.searchdir}"/>
     <maven:addPath id="maven.test.compile.src.set" refid="_searchdir"/>
-    <pathconvert pathsep=":" property="_testSrcDirs" refid="maven.test.compile.src.set"/>
-    <u:tokenize var="_listOfTestSrcDirs" delim=":">${_testSrcDirs}</u:tokenize>
+    <pathconvert pathsep="${path.separator}" property="_testSrcDirs" refid="maven.test.compile.src.set"/>
+    <u:tokenize var="_listOfTestSrcDirs" delim="${path.separator}">${_testSrcDirs}</u:tokenize>
 
     <j:if test="${unitTestSourcesPresent == 'true' and context.getVariable('maven.test.skip') != 'true'}">