Upgrade to Checkstyle 10.12.4

Closes gh-37976
This commit is contained in:
Andy Wilkinson 2023-10-20 15:58:24 +01:00
parent 7c864804d5
commit f081a0e9be

View File

@ -239,7 +239,7 @@ class JavaConventions {
project.getTasks().withType(Format.class, (Format) -> Format.setEncoding("UTF-8"));
project.getPlugins().apply(CheckstylePlugin.class);
CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
checkstyle.setToolVersion("8.45.1");
checkstyle.setToolVersion("10.12.4");
checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle"));
String version = SpringJavaFormatPlugin.class.getPackage().getImplementationVersion();
DependencySet checkstyleDependencies = project.getConfigurations().getByName("checkstyle").getDependencies();