Skip to content

Commit d28c0d9

Browse files
Build sollte nicht mehr wegen SpotBugs Meldungen fehlschlagen
1 parent 37e465d commit d28c0d9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,17 @@ allprojects {
3232
markdownToPdf{
3333
}
3434

35+
tasks.withType(com.github.spotbugs.SpotBugsTask) {
36+
ignoreFailures = true
37+
38+
effort = 'max'
39+
reportLevel = 'low'
40+
41+
reports {
42+
xml.enabled = true
43+
html.enabled = false
44+
}
45+
}
3546

3647
apply plugin: 'base'
3748

0 commit comments

Comments
 (0)