Skip to content

Commit

Permalink
Update devcontainer.json
Browse files Browse the repository at this point in the history
Include multiple JDK versions, do not bundle Maven as we use the wrapper.
  • Loading branch information
ascopes authored Oct 12, 2024
1 parent f3bc18c commit 78ad460
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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": {}
}
}
}

0 comments on commit 78ad460

Please sign in to comment.