-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 1.32 KB
/
manifest.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
44
{
"components": [
{
"id": "uprotocol-core-java",
"name": "uProtocol App/Service (Java)",
"description": "uProtocol App/Service written in Java",
"type": "core",
"programs": [
{
"id": "create-project",
"description": "Creates a new uProtocol project",
"executable": "python",
"args": [
"components/cores/uapp-java/.project-creation/run.py"
]
}
],
"variables": [
{
"name": "language",
"description": "Programming language of the project.",
"type": "string",
"scope": "project",
"constant": true,
"default": "java"
}
]
},
{
"id": "devcontainer-setup-java",
"type": "extension",
"compatibleCores": [
"uprotocol-core-java"
],
"files": [
{
"src": "components/extensions/devcontainer-setup-java/src",
"dst": "."
}
],
"mandatory": true
}
]
}