You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2017/05/10 22:26:43 UTC

[15/50] [abbrv] groovy git commit: remove some noise from findbugs processing

remove some noise from findbugs processing


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

Branch: refs/heads/parrot
Commit: dd4fed36244144ece1cf530028f708572a709453
Parents: 79d1e03
Author: paulk <pa...@asert.com.au>
Authored: Sat May 6 16:51:18 2017 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Thu May 11 08:09:11 2017 +1000

----------------------------------------------------------------------
 gradle/quality.gradle | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/dd4fed36/gradle/quality.gradle
----------------------------------------------------------------------
diff --git a/gradle/quality.gradle b/gradle/quality.gradle
index 987348e..e57b552 100644
--- a/gradle/quality.gradle
+++ b/gradle/quality.gradle
@@ -138,6 +138,10 @@ allprojects {
             html.enabled = true
         }
         maxHeapSize = '2g'
+        // hack to exclude html files since include by itself doesn't work
+        def temp = classes
+        temp.include '**/*.class'
+        classes = files(temp.files)
     }
 }