From 61023da1c663facd308e696a4376e282df559a2b Mon Sep 17 00:00:00 2001 From: Kengo TODA Date: Thu, 5 May 2022 09:38:49 +0800 Subject: [PATCH] fix: bump up SpotBugs to v4.7.0 --- README.md | 10 +++++----- build.gradle | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d6718196..524687fb 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Configure `spotbugsPlugin` to apply any SpotBugs plugin: ```groovy dependencies { - spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.11.0' + spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0' } ``` @@ -86,7 +86,7 @@ dependencies { ```kotlin dependencies { - spotbugsPlugins("com.h3xstream.findsecbugs:findsecbugs-plugin:1.11.0") + spotbugsPlugins("com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0") } ``` @@ -95,7 +95,7 @@ Configure `spotbugs` to choose your favorite SpotBugs version: ```groovy dependencies { - spotbugs 'com.github.spotbugs:spotbugs:4.5.3' + spotbugs 'com.github.spotbugs:spotbugs:4.7.0' } ``` @@ -104,7 +104,7 @@ dependencies { ```kotlin dependencies { - spotbugs("com.github.spotbugs:spotbugs:4.5.3") + spotbugs("com.github.spotbugs:spotbugs:4.7.0") } ``` @@ -160,7 +160,7 @@ You can change SpotBugs version by [the `toolVersion` property of the spotbugs e |Gradle Plugin|SpotBugs| |-----:|-----:| -| 5.0.7| 4.6.0| +| 5.0.7| 4.7.0| | 5.0.4| 4.5.3| | 5.0.3| 4.5.2| | 5.0.2| 4.5.1| diff --git a/build.gradle b/build.gradle index e4892885..67a708fc 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ repositories { ext { errorproneVersion = '2.13.1' - spotBugsVersion = '4.6.0' + spotBugsVersion = '4.7.0' slf4jVersion = '1.8.0-beta4' androidGradlePluginVersion = '7.2.0' }