Skip to content

Commit

Permalink
update spotbugs to 4.7.0, spotbugs plugin to 4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed May 12, 2022
1 parent d3a16f2 commit da63355
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
- Add [UnusedLocalVariable](https://checkstyle.sourceforge.io/config_coding.html#UnusedLocalVariable)
* Update pmd 6.34 -> 6.43 (java 17 support)
* Update codenarc 2.2.0 -> 3.0.0
* Update spotbugs 4.4.2 -> 4.7.0
* Update spotbugs plugin 4.7.9 -> 4.8.0

### 4.7.0 (2021-11-10)
* Fix gradle 7 deprecation warnings (#30)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ wrapper {
ext {
animalsnifferVersion = '1.5.4'
cpdVersion = '3.3'
spotbugsPluginVersion = '4.7.10'
spotbugsPluginVersion = '4.8.0'
docVersion = '4.7.0'
}

Expand Down Expand Up @@ -57,7 +57,7 @@ mkdocs {
'version': project.docVersion,
'checkstyle': '10.1',
'pmd': '6.43.0',
'spotbugs': '4.4.2',
'spotbugs': '4.7.0',
'codenarc': '3.0.0',
'spotbugsPlugin': project.spotbugsPluginVersion,
'cpd': project.cpdVersion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class QualityExtension {

String checkstyleVersion = '10.1'
String pmdVersion = '6.43.0'
String spotbugsVersion = '4.4.2'
String spotbugsVersion = '4.7.0'
String codenarcVersion = '3.0.0'

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ class ShowStackTraceOptionTest extends AbstractKitTest {
then: "spotbugs detect violations and print stack trace"
result.task(":check").outcome == TaskOutcome.SUCCESS
def output = result.output
output.contains "org.gradle.api.GradleException: 1 SpotBugs violations were found. See the report at:"
output.contains "org.gradle.api.GradleException: 1 SpotBugs violations were found.See the report at:"
}
}

0 comments on commit da63355

Please sign in to comment.