You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2015/06/05 18:34:44 UTC

[2/2] qpid-jms git commit: NO-JIRA: filter out results for the generated parser

NO-JIRA: filter out results for the generated parser


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/55516e47
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/55516e47
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/55516e47

Branch: refs/heads/master
Commit: 55516e4772534ddfba9388f587d15fc3adff3615
Parents: c1553ee
Author: Robert Gemmell <ro...@apache.org>
Authored: Fri Jun 5 17:23:17 2015 +0100
Committer: Robert Gemmell <ro...@apache.org>
Committed: Fri Jun 5 17:33:56 2015 +0100

----------------------------------------------------------------------
 qpid-jms-client/pom.xml                       | 24 ++++++++++++++++++++++
 qpid-jms-client/src/site/findbugs-exclude.xml |  5 +++++
 2 files changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/55516e47/qpid-jms-client/pom.xml
----------------------------------------------------------------------
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 60f4efe..c3b6b09 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -90,6 +90,19 @@
         </includes>
       </resource>
     </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.jacoco</groupId>
+        <artifactId>jacoco-maven-plugin</artifactId>
+        <version>${jacoco-plugin-version}</version>
+        <configuration>
+          <excludes>
+            <!-- Generated selector parser -->
+            <exclude>org/apache/qpid/jms/selector/parser/*.*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
   </build>
 
   <reporting>
@@ -104,6 +117,17 @@
           <excludeFilterFile>${project.basedir}/src/site/findbugs-exclude.xml</excludeFilterFile>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.jacoco</groupId>
+        <artifactId>jacoco-maven-plugin</artifactId>
+        <version>${jacoco-plugin-version}</version>
+        <configuration>
+          <excludes>
+            <!-- Generated selector parser -->
+            <exclude>org/apache/qpid/jms/selector/parser/*.*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </reporting>
 

http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/55516e47/qpid-jms-client/src/site/findbugs-exclude.xml
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/site/findbugs-exclude.xml b/qpid-jms-client/src/site/findbugs-exclude.xml
index 4efe0d9..ce64526 100644
--- a/qpid-jms-client/src/site/findbugs-exclude.xml
+++ b/qpid-jms-client/src/site/findbugs-exclude.xml
@@ -49,4 +49,9 @@
     </Or>
     <Bug pattern="NP_NULL_PARAM_DEREF"/>
   </Match>
+
+  <!-- Generated selector parser -->
+  <Match>
+    <Package name="org.apache.qpid.jms.selector.parser"/>
+  </Match>
 </FindBugsFilter>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org