Skip to content

Commit

Permalink
Upgrade SpotBugs to 4.8.6 (#467)
Browse files Browse the repository at this point in the history
Upgrades SpotBugs from 4.8.3 to 4.8.6.

For release notes, see:

https://github.com/spotbugs/spotbugs/blob/master/CHANGELOG.md#486---2024-06-17

Signed-off-by: Wouter Born <github@maindrain.net>
  • Loading branch information
wborn committed Aug 11, 2024
1 parent 5caaac9 commit 272040b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/maven-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ Parameters:
| **spotbugsRuleset** | String | Relative path to the XML that specifies the bug detectors which should be run. If not set the default file will be used|
| **spotbugsInclude** | String | Relative path to the XML that specifies the bug instances that will be included in the report. If not set the default file will be used|
| **spotbugsExclude** | String | Relative path to the XML that specifies the bug instances that will be excluded from the report. If not set the default file will be used|
| **maven.spotbugs.version** | String | The version of the spotbugs-maven-plugin that will be used (default value is **4.8.3.1**) |
| **spotbugs.version** | String | The version of SpotBugs that will be used (default value is **4.8.3**) |
| **maven.spotbugs.version** | String | The version of the spotbugs-maven-plugin that will be used (default value is **4.8.6.2**) |
| **spotbugs.version** | String | The version of SpotBugs that will be used (default value is **4.8.6**) |
| **spotbugsPlugins** | List<Dependency> | A list with artifacts that contain additional detectors/patterns for SpotBugs |
| **findbugs.slf4j.version** | String | The version of the findbugs-slf4j plugin that will be used (default value is **1.5.0**)|

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<maven.resources.version>3.3.0</maven.resources.version>
<pmd.version>7.0.0</pmd.version>
<checkstyle.version>10.14.0</checkstyle.version>
<spotbugs.version>4.8.3</spotbugs.version>
<spotbugs.version>4.8.6</spotbugs.version>
<maven.core.version>3.6.0</maven.core.version>
<maven.plugin.api.version>3.8.5</maven.plugin.api.version>
<maven.plugin.annotations.version>3.7.0</maven.plugin.annotations.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class SpotBugsChecker extends AbstractChecker {
/**
* The version of the spotbugs-maven-plugin that will be used
*/
@Parameter(property = "maven.spotbugs.version", defaultValue = "4.8.3.1")
@Parameter(property = "maven.spotbugs.version", defaultValue = "4.8.6.2")
private String spotbugsMavenPluginVersion;

/**
Expand All @@ -95,7 +95,7 @@ public class SpotBugsChecker extends AbstractChecker {
/**
* The version of the spotbugs that will be used
*/
@Parameter(property = "spotbugs.version", defaultValue = "4.8.3")
@Parameter(property = "spotbugs.version", defaultValue = "4.8.6")
private String spotBugsVersion;

/**
Expand Down

0 comments on commit 272040b

Please sign in to comment.