Skip to content

Commit dd34432

Browse files
committed
1 parent 1f78412 commit dd34432

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gradle/java-setup.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ spotbugs {
1717
ignoreFailures = false // bug free or it doesn't ship!
1818
reportLevel = 'medium' // low|medium|high (low = sensitive to even minor mistakes)
1919
omitVisitors = [
20-
'FindReturnRef'] // https://spotbugs.readthedocs.io/en/latest/detectors.html#findreturnref
20+
// https://spotbugs.readthedocs.io/en/latest/detectors.html#constructorthrow
21+
'ConstructorThrow',
22+
// https://spotbugs.readthedocs.io/en/latest/detectors.html#findreturnref
23+
'FindReturnRef',
24+
]
2125
}
2226
tasks.named('spotbugsTest') {
2327
enabled = false

0 commit comments

Comments
 (0)