diff --git a/.gitignore b/.gitignore index 530ec7f8c9c..e4d1db898b1 100644 --- a/.gitignore +++ b/.gitignore @@ -52,6 +52,9 @@ atlassian-ide-plugin.xml # VS Code .vscode/ +# Claude artifacts +.claude/* + cached-antora-playbook.yml node_modules diff --git a/buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java b/buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java index d23795182c8..d067a60abde 100644 --- a/buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java +++ b/buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java @@ -48,7 +48,8 @@ public class CheckstyleConventions { configureNoHttpPlugin(project); } project.getPlugins().apply(CheckstylePlugin.class); - project.getTasks().withType(Checkstyle.class).forEach(checkstyle -> checkstyle.getMaxHeapSize().set("1g")); + project.getTasks().withType(Checkstyle.class).forEach(checkstyle -> checkstyle.getMaxHeapSize() + .set("checkstyleNohttp".equals(checkstyle.getName()) ? "1536m" : "1g")); CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class); checkstyle.setToolVersion("13.10.0"); checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle"));