Author: veithen
Date: Sat Apr 4 11:16:06 2009
New Revision: 761901
URL: http://svn.apache.org/viewvc?rev=761901&view=rev
Log:
Fixed a build failure on Windows caused by backslash being used as file
separator.
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml
Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml?rev=761901&r1=761900&r2=761901&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml Sat Apr
4 11:16:06 2009
@@ -120,10 +120,10 @@
<!-- This generates a list of the files in
src/test/resources/conformance.
This is useful when loading these files
from the classpath. -->
<body>
- def filelist = new
File("${project.build.directory}/generated-test-resources/conformance/filelist");
+ def filelist = new
File(project.build.directory, "generated-test-resources/conformance/filelist");
filelist.parentFile.mkdirs();
filelist.delete();
- new
File("${basedir}/src/test/resources/conformance").eachFile({
+ new File(project.basedir,
"src/test/resources/conformance").eachFile({
if (it.file) {
filelist.append("$it.name\n");
}