You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bh...@apache.org on 2014/04/30 15:19:07 UTC

[05/12] git commit: ACCUMULO-2754 Exclude thrift classes from PMD/CPD

ACCUMULO-2754 Exclude thrift classes from PMD/CPD


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/5bd4465c
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/5bd4465c
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/5bd4465c

Branch: refs/heads/1.4.6-SNAPSHOT
Commit: 5bd4465c433860624091b0d97892e02f58154e7a
Parents: 80f8afb
Author: Bill Havanki <bh...@cloudera.com>
Authored: Tue Apr 29 12:27:43 2014 -0400
Committer: Bill Havanki <bh...@cloudera.com>
Committed: Tue Apr 29 12:27:43 2014 -0400

----------------------------------------------------------------------
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/5bd4465c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6ed7a61..470f742 100644
--- a/pom.xml
+++ b/pom.xml
@@ -445,6 +445,9 @@
         <artifactId>maven-pmd-plugin</artifactId>
         <version>2.4</version>
         <configuration>
+          <excludes>
+            <exclude>**/thrift/*.java</exclude>
+          </excludes>
           <format>html</format>
           <includeTests>true</includeTests>
           <targetJdk>1.6</targetJdk>