You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by sc...@apache.org on 2011/07/21 22:55:28 UTC

svn commit: r1149359 - /velocity/tools/branches/2.0.x/test.xml

Author: schultz
Date: Thu Jul 21 20:55:28 2011
New Revision: 1149359

URL: http://svn.apache.org/viewvc?rev=1149359&view=rev
Log:
Fixed incorrect use of backslashes in paths.

Modified:
    velocity/tools/branches/2.0.x/test.xml

Modified: velocity/tools/branches/2.0.x/test.xml
URL: http://svn.apache.org/viewvc/velocity/tools/branches/2.0.x/test.xml?rev=1149359&r1=1149358&r2=1149359&view=diff
==============================================================================
--- velocity/tools/branches/2.0.x/test.xml (original)
+++ velocity/tools/branches/2.0.x/test.xml Thu Jul 21 20:55:28 2011
@@ -261,7 +261,7 @@
     <echo>Analyzing ${dist.dir}/${project.id}.jar built from ${source.home}</echo>
     <findbugs home="${findbugs.home}"
               output="html"
-              outputFile="${test.build.dir}\findbugs-report.html"
+              outputFile="${test.build.dir}/findbugs-report.html"
               failOnError="true">
       <auxClasspath>
         <fileset dir="${lib.dir}">
@@ -298,11 +298,11 @@
       <ruleset>codesize</ruleset>
 -->
       <formatter type="html"
-                 toFile="${test.build.dir}\pmd_report.html"/>
+                 toFile="${test.build.dir}/pmd_report.html"/>
       <fileset dir="${source.home}/main/java">
         <include name="**/*.java"/>
       </fileset>
     </pmd>
-    <echo>Generated report is at ${test.build.dir}\pmd_report.html</echo>
+    <echo>Generated report is at ${test.build.dir}/pmd_report.html</echo>
   </target>
 </project>