From 6fcb93d204326086304e73db08ef34add3b63bd5 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Tue, 17 Jun 2025 06:17:09 +0000 Subject: [PATCH] Maven no longer automatically installed Changed automatic Maven installation to false due to issue with Dev Container. --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b7848ee..9acb6cb 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -8,7 +8,7 @@ "features": { "ghcr.io/devcontainers/features/java:1": { "version": "none", - "installMaven": "true", + "installMaven": "false", "installGradle": "false" } },