-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevcontainer-template.json
43 lines (43 loc) · 1.37 KB
/
devcontainer-template.json
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
37
38
39
40
41
42
43
{
"id": "java",
"version": "3.0.0",
"name": "Java",
"description": "Develop Java applications. Includes the JDK and Java extensions.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/java",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"21-bookworm",
"17-bookworm",
"11-bookworm",
"8-bookworm",
"21-bullseye",
"17-bullseye",
"11-bullseye",
"8-bullseye",
"21-buster",
"17-buster",
"11-buster",
"8-buster"
],
"default": "21-bullseye"
},
"installMaven": {
"type": "boolean",
"description": "Install Maven, a management tool for Java",
"default": "false"
},
"installGradle": {
"type": "boolean",
"description": "Install Gradle, a build automation tool for multi-language software development",
"default": "false"
}
},
"platforms": [
"Java"
]
}