ACCUMULO-2454 Improve Cobertura reporting Coverage reports are now aggregated across modules. Also, the site reports exclude Thrift-generated classes.
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/a99b0b67 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/a99b0b67 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/a99b0b67 Branch: refs/heads/1.6.0-SNAPSHOT Commit: a99b0b67429aeb378f1e04fe8321d55e46893b50 Parents: 58535fc Author: Bill Havanki <bhava...@cloudera.com> Authored: Thu Mar 13 17:02:23 2014 -0400 Committer: Bill Havanki <bhava...@cloudera.com> Committed: Thu Mar 13 17:02:23 2014 -0400 ---------------------------------------------------------------------- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/a99b0b67/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9fd5bfa..9464bff 100644 --- a/pom.xml +++ b/pom.xml @@ -512,6 +512,7 @@ <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.2</version> <configuration> + <aggregate>true</aggregate> <formats> <format>xml</format> <format>html</format> @@ -941,10 +942,16 @@ <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.2</version> <configuration> + <aggregate>true</aggregate> <formats> <format>xml</format> <format>html</format> </formats> + <instrumentation> + <excludes> + <exclude>**/thrift/*.class</exclude> + </excludes> + </instrumentation> </configuration> </plugin> </plugins>