We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84980e9 commit 329a639Copy full SHA for 329a639
build.gradle
@@ -9,6 +9,7 @@ plugins {
9
id 'jacoco'
10
id "com.diffplug.gradle.spotless" version "3.27.0"
11
id 'org.sonarqube' version '2.8'
12
+ id "com.github.spotbugs" version "4.8.0"
13
}
14
15
apply from: 'dependencies.gradle'
gradle/quality.gradle
@@ -8,6 +8,16 @@ checkstyle
8
toolVersion = versions.checkstyle
+spotbugs {
+ ignoreFailures = true
+}
+spotbugsMain {
+ reports {
16
+ xml.enabled = false
17
+ html.enabled = true
18
+ }
19
20
+
21
sourceSets
22
{
23
integrationTest
0 commit comments