HADOOP-9494. Excluded auto-generated and examples code from clover reports (Andrey Klochkov via jeagles)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1532014 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Turner Eagles 2013-10-14 18:25:45 +00:00
parent d8a9841f40
commit 50ac80a44f
2 changed files with 16 additions and 0 deletions

View File

@ -67,6 +67,9 @@ Release 2.3.0 - UNRELEASED
HADOOP-9470. eliminate duplicate FQN tests in different Hadoop modules
(Ivan A. Veselovsky via daryn)
HADOOP-9494. Excluded auto-generated and examples code from clover reports
(Andrey Klochkov via jeagles)
OPTIMIZATIONS
HADOOP-9748. Reduce blocking on UGI.ensureInitialized (daryn)

13
pom.xml
View File

@ -449,6 +449,19 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<generateHtml>${cloverGenHtml}</generateHtml>
<generateXml>${cloverGenXml}</generateXml>
<generateHistorical>${cloverGenHistorical}</generateHistorical>
<excludes>
<exclude>**/examples/**/*.java</exclude>
<exclude>**/hamlet/*.java</exclude>
<exclude>**/ha/proto/*.java</exclude>
<exclude>**/protocol/proto/*.java</exclude>
<exclude>**/compiler/generated/*.java</exclude>
<exclude>**/protobuf/*.java</exclude>
<exclude>**/v2/proto/*.java</exclude>
<exclude>**/yarn/proto/*.java</exclude>
<exclude>**/security/proto/*.java</exclude>
<exclude>**/tools/proto/*.java</exclude>
<exclude>**/hs/proto/*.java</exclude>
</excludes>
</configuration>
<executions>
<execution>