diff --git a/build.gradle b/build.gradle index b6fe4ca56b..68d37c9ceb 100644 --- a/build.gradle +++ b/build.gradle @@ -262,13 +262,13 @@ configure(subprojects.findAll {it.name != 'bom'}) { dependencies { checkstyle files("$rootDir/config/checkstyle/lib/methodchecker-1.0.0.jar") - checkstyle 'com.puppycrawl.tools:checkstyle:9.0' + checkstyle 'com.puppycrawl.tools:checkstyle:14.0.0' errorprone "com.google.errorprone:error_prone_core:2.43.0" } checkstyle { configFile = file("$rootDir/config/checkstyle/checkstyle.xml"); - toolVersion = '9.0'; // your choice here + toolVersion = '14.0.0'; sourceSets = [project.sourceSets.main] }