From a9fec64ca8690f44b1595bdd91da6e0efca0717a Mon Sep 17 00:00:00 2001 From: Davis Rollman Date: Tue, 30 Jul 2024 11:29:36 -0400 Subject: [PATCH] Upgrade spotbugs to 4.8.6 (#2295) * Upgrade spotbugs * Upgrade spotbugs --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7b47851851..6e8e919e52 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:4.2.0' classpath 'me.tatarka:gradle-retrolambda:3.7.1' - classpath "gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.5.1" + classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.18" } } @@ -49,6 +49,7 @@ subprojects { // Currently we only warn about issues and try to fix them as we go, but those aren't mission critical. spotbugs { ignoreFailures = true + toolVersion = '4.8.6' } tasks.withType(com.github.spotbugs.snom.SpotBugsTask ) {