svn commit: r893598 - /ofbiz/trunk/build.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r893598 - /ofbiz/trunk/build.xml

doogie-3
Author: doogie
Date: Wed Dec 23 19:02:19 2009
New Revision: 893598

URL: http://svn.apache.org/viewvc?rev=893598&view=rev
Log:
Fix parsing of source files; this worked previously, but I think that
was with cobertura 1.9.1.  It's possible 1.9.3 does it slightly
different.

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=893598&r1=893597&r2=893598&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Wed Dec 23 19:02:19 2009
@@ -530,9 +530,11 @@
             </classpath>
         </taskdef>
         <cobertura-report datafile="runtime/logs/cobertura.dat" destdir="runtime/logs/cobertura-report">
-            <fileset dir=".">
-                <include name="*/*/src/**/*.java"/>
-            </fileset>
+            <dirset dir=".">
+ <include name="*/*/src"/>
+            </dirset>
+
+            <include name="**/*.java"/>
         </cobertura-report>
     </target>