-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
43 lines (43 loc) · 1020 Bytes
/
devcontainer-template.json
File metadata and controls
43 lines (43 loc) · 1020 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
37
38
39
40
41
42
43
{
"id": "azure-functions-java",
"version": "2.0.2",
"name": "Azure Functions (Java)",
"description": "Develop Java based Azure Functions. Includes all needed SDKs, extensions, and dependencies.",
"documentationURL": "https://github.com/shibayan/devcontainers/tree/master/src/azure-functions-java",
"publisher": "shibayan",
"licenseURL": "https://github.com/shibayan/devcontainers/blob/master/LICENSE",
"options": {
"javaVersion": {
"type": "string",
"description": "Java version:",
"proposals": [
"25",
"21",
"17",
"11",
"8"
],
"default": "21"
},
"azureFunctionsCliVersion": {
"type": "string",
"description": "Azure Functions CLI version:",
"proposals": [
"latest",
"4.7.0",
"4.6.0",
"4.5.0",
"4.4.0",
"4.3.0"
],
"default": "latest"
}
},
"platforms": [
"Azure Functions",
"Java"
],
"optionalPaths": [
".github/*"
]
}