Hi all...
I`m trying to remove some package from my report and having trouble.
Could some one give me some help?
I'm using EMMA in my ant process.
<!-- Generate the emma report both in xml and html -->
<emma>
<report
sourcepath="${build.report.src}"
metrics="class:${coverage.classes.min},method:${coverage.methods.min}">
<fileset dir="${build.report.junit.data.dir}">
<include name="*.emma"/>
</fileset>
<html outfile="${build.report.reports}/emma/raw.html" depth="method"/>
<xml outfile="${build.report.tmp}/emma.xml" depth="method"/>
</report>
</emma>
I`ve tried to use:
<filter excludes="com.my.package.*"/>
But with no success :(