-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
50 lines (50 loc) · 1.05 KB
/
devcontainer-feature.json
File metadata and controls
50 lines (50 loc) · 1.05 KB
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
44
45
46
47
48
49
50
{
"id": "sdkman",
"version": "1.0.0",
"name": "SDKMAN!",
"documentationURL": "https://github.com/ebaskoro/devcontainer-features/tree/main/src/sdkman",
"description": "Installs SDKMAN!",
"options": {
"candidate": {
"type": "string",
"description": "Select a candidate to install",
"enum": [
"activemq",
"ant",
"asciidoctorj",
"gradle",
"grails",
"groovy",
"hadoop",
"java",
"jmeter",
"kotlin",
"leiningen",
"maven",
"micronaut",
"sbt",
"scala",
"scalacli",
"spark",
"springboot",
"tomcat",
"vertx"
]
},
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Select or enter the version to install"
}
},
"containerEnv": {
"SDKMAN_DIR": "/usr/local/sdkman",
"PATH": "/usr/local/sdkman/bin:${PATH}"
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}