Files
slot/.devcontainer/devcontainer.json

19 lines
382 B
JSON
Raw Normal View History

2025-04-24 17:11:09 +02:00
{
2025-05-07 15:49:02 +00:00
"name": "Java 21 Dev Container",
"image": "mcr.microsoft.com/openjdk/jdk:21-ubuntu",
"settings": {
"java.home": "/usr/lib/jvm/msopenjdk-21-amd64"
},
"features": {
2025-05-07 16:12:42 +00:00
"ghcr.io/devcontainers/features/java:1": {
"installMaven": "true"
}
2025-05-07 15:49:02 +00:00
},
2025-04-25 23:32:19 +02:00
"customizations": {
"jetbrains": {
2025-05-07 15:49:02 +00:00
"backend": "IntelliJ"
2025-04-25 23:32:19 +02:00
}
2025-04-24 17:11:09 +02:00
},
2025-04-25 23:32:19 +02:00
"workspaceFolder": "/workspace"
2025-04-24 17:11:09 +02:00
}