From 0efc225422958df59029b5e84675a0db75238114 Mon Sep 17 00:00:00 2001 From: guptas6est Date: Fri, 4 Sep 2026 13:51:54 +0100 Subject: [PATCH] Bump Checkstyle from 9.0 to 14.0.0 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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] }