Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert to SpotBugs 4.5.2 #479

Merged
merged 1 commit into from
Feb 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
uses: ./.github/actions/sonar-update-center
with:
prop-file: findbugs.properties
description: Use SpotBugs 4.5.3, sb-contrib 7.4.7, and findsecbugs 1.11.0
description: Use SpotBugs 4.5.2, sb-contrib 7.4.7, and findsecbugs 1.11.0
minimal-supported-sq-version: 8.9
latest-supported-sq-version: LATEST
changelog-url: https://github.com/spotbugs/sonar-findbugs/releases/tag/${{ github.event.release.tag_name }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ Findbugs Plugin version|Embedded SpotBugs/Findbugs version|Embedded Findsecbugs
4.0.3 | 4.2.0 (SpotBugs) | 1.11.0 | 7.4.7 (sb-contrib) | 1.8|7.9-8.9|5.10.1.16922
4.0.4 | 4.4.0 (SpotBugs) | 1.11.0 | 7.4.7 (sb-contrib) | 1.8|7.9~|5.10.1.16922
4.0.5 | 4.5.0 (SpotBugs) | 1.11.0 | 7.4.7 (sb-contrib) | 1.8|7.9~|5.10.1.16922
4.0.6-SNAPSHOT | 4.5.3 (SpotBugs) | 1.11.0 | 7.4.7 (sb-contrib) | 1.8|7.9~|5.10.1.16922
4.0.6-SNAPSHOT | 4.5.2 (SpotBugs) | 1.11.0 | 7.4.7 (sb-contrib) | 1.8|7.9~|5.10.1.16922
4 changes: 2 additions & 2 deletions generate_profiles/BuildXmlFiles.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import groovy.json.JsonSlurper;

@Grapes([

@Grab(group='com.github.spotbugs', module='spotbugs', version='4.5.3'),
@Grab(group='com.github.spotbugs', module='spotbugs', version='4.5.2'),
@Grab(group='com.mebigfatguy.sb-contrib', module='sb-contrib', version='7.4.7'),
@Grab(group='com.h3xstream.findsecbugs' , module='findsecbugs-plugin', version='1.11.0')]
)


FB = new Plugin(groupId: 'com.github.spotbugs', artifactId: 'spotbugs', version: '4.5.3')
FB = new Plugin(groupId: 'com.github.spotbugs', artifactId: 'spotbugs', version: '4.5.2')
CONTRIB = new Plugin(groupId: 'com.mebigfatguy.sb-contrib', artifactId: 'sb-contrib', version: '7.4.7')
FSB = new Plugin(groupId: 'com.h3xstream.findsecbugs', artifactId: 'findsecbugs-plugin', version: '1.11.0')

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
Also need to update profiles, see ./generate_profiles/README.md for detail.
Update the version table and the rules count badge in README.md
-->
<spotbugs.version>4.5.3</spotbugs.version>
<spotbugs.version>4.5.2</spotbugs.version>
<sbcontrib.version>7.4.7</sbcontrib.version>
<findsecbugs.version>1.11.0</findsecbugs.version>

Expand Down