From 78ad4606ae4abb8a3511d484e829aed67f3ba86b Mon Sep 17 00:00:00 2001 From: Ashley <73482956+ascopes@users.noreply.github.com> Date: Sat, 12 Oct 2024 13:52:39 +0100 Subject: [PATCH] Update devcontainer.json Include multiple JDK versions, do not bundle Maven as we use the wrapper. --- .devcontainer/devcontainer.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 13aeb2b8..41d199d6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,14 +1,15 @@ { "image": "mcr.microsoft.com/devcontainers/universal:2", "features": { + "ghcr.io/devcontainers/features/common-utils:2": {}, "ghcr.io/devcontainers/features/java:1": { - "version": "22", + "version": "23", + "additionalVersions": "11,17,21", "jdkDistro": "tem", - "installMaven": true + "installMaven": false }, "ghcr.io/devcontainers-contrib/features/protoc:1": { "version": "latest" - }, - "ghcr.io/devcontainers/features/common-utils:2": {} + } } }