From b16478dfd29f4969be0475357aae0257c6302f30 Mon Sep 17 00:00:00 2001 From: Sheng Chen Date: Wed, 19 Jan 2022 16:54:09 +0800 Subject: [PATCH] fix: Add default setting for referenced libraries Signed-off-by: Sheng Chen --- templates/invisible-project/.vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/invisible-project/.vscode/settings.json b/templates/invisible-project/.vscode/settings.json index 96ee3d15..e112a702 100644 --- a/templates/invisible-project/.vscode/settings.json +++ b/templates/invisible-project/.vscode/settings.json @@ -1,4 +1,7 @@ { "java.project.sourcePaths": ["src"], - "java.project.outputPath": "bin" + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] }