From eae2848e9e89976bb4242e0abbe2ac6b5d929709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Sat, 18 May 2024 14:37:55 +0200 Subject: [PATCH] Update Codium extensions for Java support --- .vscode/extensions.json | 5 +++ .vscode/launch.json | 84 +++++++++++++++++++++++++++++++++++++++++ .vscode/settings.json | 3 +- 3 files changed, 91 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/launch.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..0d95f065 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "vscjava.vscode-java-pack" + ] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..8310c621 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,84 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "java", + "name": "Current File", + "request": "launch", + "mainClass": "${file}" + }, + { + "type": "java", + "name": "ImageInfo", + "request": "launch", + "mainClass": "helma.image.ImageInfo", + "projectName": "helma_" + }, + { + "type": "java", + "name": "CommandlineRunner", + "request": "launch", + "mainClass": "helma.main.CommandlineRunner", + "projectName": "helma_" + }, + { + "type": "java", + "name": "Server", + "request": "launch", + "mainClass": "helma.main.Server", + "projectName": "helma_" + }, + { + "type": "java", + "name": "XmlConverter", + "request": "launch", + "mainClass": "helma.objectmodel.dom.XmlConverter", + "projectName": "helma_" + }, + { + "type": "java", + "name": "Crypt", + "request": "launch", + "mainClass": "helma.util.Crypt", + "projectName": "helma_" + }, + { + "type": "java", + "name": "HtmlEncoder", + "request": "launch", + "mainClass": "helma.util.HtmlEncoder", + "projectName": "helma_" + }, + { + "type": "java", + "name": "Logo", + "request": "launch", + "mainClass": "helma.util.Logo", + "projectName": "helma_" + }, + { + "type": "java", + "name": "MarkdownProcessor", + "request": "launch", + "mainClass": "helma.util.MarkdownProcessor", + "projectName": "helma_" + }, + { + "type": "java", + "name": "Commandline", + "request": "launch", + "mainClass": "helma.main.launcher.Commandline", + "projectName": "launcher" + }, + { + "type": "java", + "name": "Main", + "request": "launch", + "mainClass": "helma.main.launcher.Main", + "projectName": "launcher" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 0b1d78a0..59a77fb9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,6 @@ }, "files.watcherExclude": { "apps/": true - } + }, + "java.configuration.updateBuildConfiguration": "automatic" }