Add missing protobuf exclusion

Change-Id: I780e52cc1f2e97596950f9c709f3777b68adca14
diff --git a/conf/findbugs/exclude.xml b/conf/findbugs/exclude.xml
index 2949ee4..7fe430a 100644
--- a/conf/findbugs/exclude.xml
+++ b/conf/findbugs/exclude.xml
@@ -4,6 +4,7 @@
         - In file ${findbugs.excludeFilterFile} defined at top of pom.xml (this file)
         - maven-checkstyle-plugin configuration in pom.xml
         - maven-pmd-plugin configuration in pom.xml
+          (under build and reporting)
      -->
      <Match>
        <Class name="~net.onrc.onos.datastore.RCProtos(.*)?" />
diff --git a/pom.xml b/pom.xml
index 2f4b1b8..dea1fc6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -288,7 +288,15 @@
         <artifactId>maven-pmd-plugin</artifactId>
         <version>3.1</version>
 	<configuration>
+          <!--
+            Note: Exclusion definition exists in multiple places.
+            - In file ${findbugs.excludeFilterFile} defined at top of pom.xml
+            - maven-checkstyle-plugin configuration in pom.xml
+            - maven-pmd-plugin configuration in pom.xml
+              (under build and reporting)
+          -->
 	  <excludes>
+            <exclude>**/RCProtos.java</exclude>
 	    <exclude>**/com/tinkerpop/**</exclude>
 	    <exclude>**/edu/stanford/**</exclude>
 	    <exclude>**/net/floodlightcontroller/**</exclude>
@@ -409,6 +417,7 @@
             - In file ${findbugs.excludeFilterFile} defined at top of pom.xml
             - maven-checkstyle-plugin configuration in pom.xml
             - maven-pmd-plugin configuration in pom.xml
+              (under build and reporting)
           -->
           <excludes>**/RCProtos.java,**/RamCloudGraphProtos.java</excludes>
 	  <suppressionsLocation>
@@ -449,10 +458,10 @@
             - In file ${findbugs.excludeFilterFile} defined at top of pom.xml
             - maven-checkstyle-plugin configuration in pom.xml
             - maven-pmd-plugin configuration in pom.xml
+              (under build and reporting)
           -->
           <excludes>
             <exclude>**/RCProtos.java</exclude>
-            <exclude>**/RamCloudGraphProtos.java</exclude>
 	    <exclude>**/com/tinkerpop/**</exclude>
 	    <exclude>**/edu/stanford/**</exclude>
 	    <exclude>**/net/floodlightcontroller/**</exclude>