mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 14:15:44 +03:00
update gradle config to latest snom API
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
3539ba46a1
commit
460757445a
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
|||
import com.github.spotbugs.snom.SpotBugsTask
|
||||
import com.github.spotbugs.snom.Confidence
|
||||
import com.github.spotbugs.snom.Effort
|
||||
import org.gradle.internal.jvm.Jvm
|
||||
|
||||
buildscript {
|
||||
|
@ -442,8 +444,8 @@ jacoco {
|
|||
|
||||
spotbugs {
|
||||
ignoreFailures = true // should continue checking
|
||||
effort = "max"
|
||||
reportLevel = "medium"
|
||||
effort = Effort.MAX
|
||||
reportLevel = Confidence.valueOf('MEDIUM')
|
||||
}
|
||||
|
||||
tasks.withType(SpotBugsTask).configureEach { task ->
|
||||
|
|
Loading…
Reference in a new issue