-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
36 lines (36 loc) · 1016 Bytes
/
devcontainer.json
File metadata and controls
36 lines (36 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "JNA Development",
"build": {"dockerfile": "Dockerfile"},
"postAttachCommand": "ant clean && ant",
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "none",
"installMaven": "true",
"mavenVersion": "3.8.6",
"installGradle": "false"
},
"ghcr.io/devcontainers-contrib/features/ant-sdkman:2": {}
},
"customizations": {
"vscode": {
"settings": {
"java.completion.enabled": true,
"java.debug.settings.enableRunDebugCodeLens": true,
"java.test.editor.enableShortcuts": true,
"terminal.integrated.customGlyphs": true,
"terminal.integrated.enableImages": true,
"terminal.integrated.gpuAcceleration": "on"
},
"extensions": [
"github.codespaces",
"oracle-labs-graalvm.graalvm",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"asf.apache-netbeans-java",
"github.copilot",
"oracle-labs-graalvm.dashboard",
"oracle-labs-graalvm.graalvm-pack"
]
}
}
}