Skip to content

Commit

Permalink
update pmd to 6.43 (not 6.44 because of the regression in xml report …
Browse files Browse the repository at this point in the history
…generation by ant task)
  • Loading branch information
xvik committed Apr 10, 2022
1 parent 75fc234 commit 912eed5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
Option might be used to force backport for java >=11 or to disable backport at all
* Update checkstyle config:
- Add [UnusedLocalVariable](https://checkstyle.sourceforge.io/config_coding.html#UnusedLocalVariable)
* Update pmd 6.34 -> 6.43 (java 17 support)

### 4.7.0 (2021-11-10)
* Fix gradle 7 deprecation warnings (#30)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ mkdocs {
extras = [
'version': project.docVersion,
'checkstyle': '10.1',
'pmd': '6.34.0',
'pmd': '6.43.0',
'spotbugs': '4.4.2',
'codenarc': '2.2.0',
'spotbugsPlugin': project.spotbugsPluginVersion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class QualityExtension {
}

String checkstyleVersion = '10.1'
String pmdVersion = '6.34.0'
String pmdVersion = '6.43.0'
String spotbugsVersion = '4.4.2'
String codenarcVersion = '2.2.0'

Expand Down

0 comments on commit 912eed5

Please sign in to comment.