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 ecdd563 commit 5350508Copy full SHA for 5350508
build.gradle
@@ -9,6 +9,7 @@ description = 'RxJava: Reactive Extensions for the JVM – a library for composi
9
10
apply plugin: 'java'
11
apply plugin: 'pmd'
12
+apply plugin: 'findbugs'
13
apply plugin: 'jacoco'
14
apply plugin: 'nebula.rxjava-project'
15
@@ -91,4 +92,18 @@ task pmdPrint(dependsOn: 'pmdMain') << {
91
92
}
93
94
-build.dependsOn pmdPrint
95
+build.dependsOn pmdPrint
96
+
97
+findbugs {
98
+ ignoreFailures true
99
+ toolVersion = '3.0.1'
100
+ effort = 'max'
101
+ reportLevel = 'low'
102
+}
103
104
+findbugsMain {
105
+ reports {
106
+ html.enabled = false // Findbugs can only have on report enabled
107
+ xml.enabled = true
108
+ }
109
0 commit comments