Skip to content

Commit

Permalink
fix: bump up SpotBugs to v4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KengoTODA committed May 13, 2022
1 parent b14d61f commit 61023da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand All @@ -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")
}
```
</details>
Expand All @@ -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'
}
```

Expand All @@ -104,7 +104,7 @@ dependencies {

```kotlin
dependencies {
spotbugs("com.github.spotbugs:spotbugs:4.5.3")
spotbugs("com.github.spotbugs:spotbugs:4.7.0")
}
```
</details>
Expand Down Expand Up @@ -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|
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down

0 comments on commit 61023da

Please sign in to comment.