From 2358e64f84c74e13dca37f972b1d09032f3ab69c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Mon, 26 May 2025 17:34:55 +0200 Subject: [PATCH] Upgrade to Checkstyle 10.24.0 Closes gh-1588 --- .../ws/gradle/conventions/CheckstyleConventions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/plugins/conventions-plugin/src/main/java/org/springframework/ws/gradle/conventions/CheckstyleConventions.java b/gradle/plugins/conventions-plugin/src/main/java/org/springframework/ws/gradle/conventions/CheckstyleConventions.java index 8634d96a..a4c161cb 100644 --- a/gradle/plugins/conventions-plugin/src/main/java/org/springframework/ws/gradle/conventions/CheckstyleConventions.java +++ b/gradle/plugins/conventions-plugin/src/main/java/org/springframework/ws/gradle/conventions/CheckstyleConventions.java @@ -45,7 +45,7 @@ public class CheckstyleConventions { .forEach((checkstyle) -> checkstyle.getMaxHeapSize().set("1g")); project.getTasks().named("checkstyleTest").configure((task) -> task.setEnabled(false)); CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class); - checkstyle.setToolVersion("10.21.1"); + checkstyle.setToolVersion("10.24.0"); checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle")); String version = SpringJavaFormatPlugin.class.getPackage().getImplementationVersion(); DependencySet checkstyleDependencies = project.getConfigurations()