Skip to content

Commit b9cb59a

Browse files
Server Subprojekt sollte bei Spotbugs Fehlern nicht mehr abbrechen
1 parent 4caf395 commit b9cb59a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

de.bitctrl.dav.rest.server/build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,16 @@ spotbugs {
2626
excludeFilter = file("$projectDir/config/spotbugsExclude.xml")
2727
}
2828

29+
tasks.withType(com.github.spotbugs.SpotBugsTask) {
30+
ignoreFailures = true
31+
32+
effort = 'max'
33+
reportLevel = 'low'
34+
35+
reports {
36+
xml.enabled = true
37+
html.enabled = false
38+
}
39+
}
40+
2941
mainClassName='de.bitctrl.dav.rest.server.DavRestServer'

0 commit comments

Comments
 (0)