From 813f66bf3a00940f3ce56921215d7dbb2b13ef9c Mon Sep 17 00:00:00 2001 From: Changyong Gong Date: Wed, 9 Sep 2026 13:02:00 +0800 Subject: [PATCH] test: disable unused Lombok integration in JUnit fixture Disable the bundled Lombok agent only in the JUnit test workspace, which has no Lombok dependency, to avoid upstream JDT indexing failures. Related: https://github.com/redhat-developer/vscode-java/issues/4504 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- test/test-projects/junit/.vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test-projects/junit/.vscode/settings.json b/test/test-projects/junit/.vscode/settings.json index bfd5e7332..93ad77af5 100644 --- a/test/test-projects/junit/.vscode/settings.json +++ b/test/test-projects/junit/.vscode/settings.json @@ -1,3 +1,4 @@ { - "java.server.launchMode": "Standard" + "java.server.launchMode": "Standard", + "java.jdt.ls.lombokSupport.enabled": false } \ No newline at end of file