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 2020/03/17 06:15:06 UTC

[groovy] branch GROOVY_3_0_X updated: GROOVY-9467: Bump Gradle Spotbugs plugin to 4.0.2 (use a different stylesheet - at least until stylesheet bug is fixed)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new 87b7407  GROOVY-9467: Bump Gradle Spotbugs plugin to 4.0.2 (use a different stylesheet - at least until stylesheet bug is fixed)
87b7407 is described below

commit 87b74070ae3792818c4d1531d051cf8ddf8810b9
Author: Paul King <pa...@asert.com.au>
AuthorDate: Tue Mar 17 16:12:16 2020 +1000

    GROOVY-9467: Bump Gradle Spotbugs plugin to 4.0.2 (use a different stylesheet - at least until stylesheet bug is fixed)
---
 gradle/quality.gradle | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gradle/quality.gradle b/gradle/quality.gradle
index a00c86a..7a23b82 100644
--- a/gradle/quality.gradle
+++ b/gradle/quality.gradle
@@ -149,7 +149,10 @@ allprojects { proj ->
         maxHeapSize = '2g'
         reports {
             xml.enabled = false
-            html.enabled = true
+            html {
+                enabled = true
+                stylesheet = 'fancy-hist.xsl'
+            }
         }
     }
 }