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'}">