You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2014/03/16 20:46:47 UTC

svn commit: r1578146 - /poi/trunk/build.xml

Author: centic
Date: Sun Mar 16 19:46:46 2014
New Revision: 1578146

URL: http://svn.apache.org/r1578146
Log:
Exclude some generated classes from coverage measurements, now instruction coverage is at around 72%, also update JaCoCo to latest version 0.6.5

Modified:
    poi/trunk/build.xml

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1578146&r1=1578145&r2=1578146&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Sun Mar 16 19:46:46 2014
@@ -153,8 +153,8 @@ under the License.
     <property name="ooxml.jsr173.url" value="${repository.m2}/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar"/>
 
     <!-- coverage libs -->
-    <property name="jacoco.zip" location="${main.lib}/jacoco-0.6.4.201312101107.zip"/>
-    <property name="jacoco.url" value="${repository.m2}/maven2/org/jacoco/jacoco/0.6.4.201312101107/jacoco-0.6.4.201312101107.zip"/>
+    <property name="jacoco.zip" location="${main.lib}/jacoco-0.6.5.201403032054.zip"/>
+    <property name="jacoco.url" value="${repository.m2}/maven2/org/jacoco/jacoco/0.6.5.201403032054/jacoco-0.6.5.201403032054.zip"/>
     <property name="asm.jar" location="${main.lib}/asm-all-4.0.jar"/>
     <property name="asm.url" value="${repository.m2}/maven2/org/ow2/asm/asm-all/4.0/asm-all-4.0.jar"/>
 
@@ -747,7 +747,10 @@ under the License.
                 </group>
                 <group name="Scratchpad">
                     <classfiles>
-                        <fileset dir="${scratchpad.output.dir}"/>
+                        <fileset dir="${scratchpad.output.dir}">
+							<exclude name="org/apache/poi/hwpf/model/types/*.class"/>
+							<exclude name="org/apache/poi/hdf/model/hdftypes/definitions/*.class"/>
+						</fileset>
                     </classfiles>
                     <sourcefiles encoding="UTF-8">
                         <fileset dir="${scratchpad.src}"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org