Repository: hbase Updated Branches: refs/heads/branch-1 136d2d215 -> aa986551c
HBASE-8808 Use Jacoco to generate Unit Test coverage reports (Manukranth) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/aa986551 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/aa986551 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/aa986551 Branch: refs/heads/branch-1 Commit: aa986551c3ab7598882fbd2f5a9cdb4694b5c508 Parents: 136d2d2 Author: stack <[email protected]> Authored: Fri Oct 3 21:51:49 2014 -0700 Committer: stack <[email protected]> Committed: Fri Oct 3 21:52:14 2014 -0700 ---------------------------------------------------------------------- pom.xml | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/aa986551/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index f0edfc9..5ee37d3 100644 --- a/pom.xml +++ b/pom.xml @@ -527,8 +527,11 @@ <testFailureIgnore>${surefire.testFailureIgnore}</testFailureIgnore> <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds> <!--Allocate some direct memory for direct memory tests--> - <argLine>${hbase-surefire.argLine}</argLine> + <argLine>${hbase-surefire.argLine} ${argLine}</argLine> <redirectTestOutputToFile>${test.output.tofile}</redirectTestOutputToFile> + <systemPropertyVariables> + <jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile> + </systemPropertyVariables> </configuration> <executions> <execution> @@ -892,6 +895,32 @@ <templateFile>${basedir}/src/main/site/site.vm</templateFile> </configuration> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${jacoco.version}</version> + <executions> + <execution> + <id>prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>report</id> + <phase>prepare-package</phase> + <goals> + <goal>report</goal> + </goals> + </execution> + </executions> + <configuration> + <skip>${hbase.skip-jacoco}</skip> + <excludes> + <exclude>**/generated/**/*.class</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> <properties> @@ -982,6 +1011,8 @@ -Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true "-Djava.library.path=${hadoop.library.path};${java.library.path}" </hbase-surefire.cygwin-argline> + <hbase.skip-jacoco>true</hbase.skip-jacoco> + <jacoco.version>0.6.2.201302030002</jacoco.version> </properties> <!-- Sorted by groups of dependencies then groupId and artifactId --> <dependencyManagement> @@ -1489,7 +1520,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <argLine>${hbase-surefire.cygwin-argline}</argLine> + <argLine>${hbase-surefire.cygwin-argline} ${argLine}</argLine> <systemProperties> <property> <name>java.net.preferIPv4Stack</name>
