Skip to content

Commit

Permalink
update checkstyle to 10.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Jun 30, 2022
1 parent 1e173b6 commit a00b866
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* Update checkstyle 9.1 -> 10.1
* Update checkstyle 9.1 -> 10.3.1
IMPORTANT: Checkstyle 10 requires java 11, but plugin will automatically switch to
[backports](https://checkstyle.org/#Backport) for lower jre.
Additional maven repository would be registered if required (LIMITED to checkstyle only)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ mkdocs {
}
extras = [
'version': project.docVersion,
'checkstyle': '10.1',
'checkstyle': '10.3.1',
'pmd': '6.43.0',
'spotbugs': '4.7.0',
'codenarc': '3.0.0',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class QualityExtension {
sourceSets = [project.sourceSets.main] as Collection<SourceSet>
}

String checkstyleVersion = '10.1'
String checkstyleVersion = '10.3.1'
String pmdVersion = '6.43.0'
String spotbugsVersion = '4.7.0'
String codenarcVersion = '3.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class QualityPlugin implements Plugin<Project> {
}
}
dependencies {
checkstyle "com.puppycrawl.tools:checkstyle-backport-jre8:${extension.checkstyleVersion}"
checkstyle "com.puppycrawl.tools:checkstyle-backport-jre8:${extension.checkstyleVersion}:all"
}
}

Expand Down

0 comments on commit a00b866

Please sign in to comment.