summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2014-03-16 19:46:46 +0000
committerDominik Stadler <centic@apache.org>2014-03-16 19:46:46 +0000
commita952c564679a4a5a0b7626a2fc1e6e9e5a30b046 (patch)
tree062fcd13fe817379875dea4f5dc7cf51a2c57a2a /build.xml
parentffc04f76306445e921514d03c07d17b6ae83500b (diff)
downloadpoi-a952c564679a4a5a0b7626a2fc1e6e9e5a30b046.tar.gz
poi-a952c564679a4a5a0b7626a2fc1e6e9e5a30b046.zip
Exclude some generated classes from coverage measurements, now instruction coverage is at around 72%, also update JaCoCo to latest version 0.6.5
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1578146 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index d0cde1874a..672b054e68 100644
--- a/build.xml
+++ b/build.xml
@@ -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}"/>