Browse Source

Upgrade to Checkstyle 10.9.3 again

Commit ed4404f350 inadvertently switched back to 10.9.1.
pull/30357/head
Sam Brannen 3 years ago
parent
commit
65a430bb42
  1. 2
      buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java

2
buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java

@ -48,7 +48,7 @@ public class CheckstyleConventions { @@ -48,7 +48,7 @@ public class CheckstyleConventions {
project.getPlugins().apply(CheckstylePlugin.class);
project.getTasks().withType(Checkstyle.class).forEach(checkstyle -> checkstyle.getMaxHeapSize().set("1g"));
CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
checkstyle.setToolVersion("10.9.1");
checkstyle.setToolVersion("10.9.3");
checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle"));
String version = SpringJavaFormatPlugin.class.getPackage().getImplementationVersion();
DependencySet checkstyleDependencies = project.getConfigurations().getByName("checkstyle").getDependencies();

Loading…
Cancel
Save