File tree Expand file tree Collapse file tree 6 files changed +29
-13
lines changed
test-create/vehicle-app-template Expand file tree Collapse file tree 6 files changed +29
-13
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,12 @@ export default class Create extends Command {
201
201
corePromptResult . appName ,
202
202
corePromptResult . example ,
203
203
appManifestInterfaceAttributes ,
204
- packageIndex . getMandatoryExtensionsByCoreId ( corePromptResult . chosenCore . id ) . map ( ( ext : ExtensionComponent ) => ext . id ) ,
204
+ [
205
+ ...( corePromptResult . example
206
+ ? packageIndex . getMandatoryExtensionsByExampleForCore ( corePromptResult . chosenCore . id , corePromptResult . appName )
207
+ : [ ] ) ,
208
+ ...packageIndex . getMandatoryExtensionsByCoreId ( corePromptResult . chosenCore . id ) . map ( ( ext : ExtensionComponent ) => ext . id ) ,
209
+ ] ,
205
210
) ;
206
211
return createData ;
207
212
}
Original file line number Diff line number Diff line change 106
106
]
107
107
}
108
108
]
109
+ },
110
+ {
111
+ "id" : " devcontainer-setup-java" ,
112
+ "type" : " extension" ,
113
+ "name" : " devContainer Setup uProtocol Java" ,
114
+ "description" : " VSCode devContainer setup for uProtocol Java applications" ,
115
+ "mandatory" : true ,
116
+ "compatibleCores" : [
117
+ " uprotocol-core-java"
118
+ ],
119
+ "parameters" : []
109
120
}
110
121
]
111
122
},
136
147
{
137
148
"id" : " src" ,
138
149
"description" : " URI or path to VSS json" ,
139
- "default" : " https://github.com/COVESA/vehicle_signal_specification/releases/download/v3 .0/vss_rel_3 .0.json" ,
150
+ "default" : " https://github.com/COVESA/vehicle_signal_specification/releases/download/v4 .0/vss_rel_4 .0.json" ,
140
151
"required" : true ,
141
152
"type" : " string"
142
153
},
Original file line number Diff line number Diff line change 5
5
{
6
6
"type" : " vehicle-signal-interface" ,
7
7
"config" : {
8
- "src" : " https://github.com/COVESA/vehicle_signal_specification/releases/download/v3 .0/vss_rel_3 .0.json" ,
8
+ "src" : " https://github.com/COVESA/vehicle_signal_specification/releases/download/v4 .0/vss_rel_4 .0.json" ,
9
9
"datapoints" : {
10
10
"required" : [
11
11
{
Original file line number Diff line number Diff line change 2
2
"packages" : [
3
3
{
4
4
"repo" : " devenv-runtimes" ,
5
- "version" : " v2.2.6 "
5
+ "version" : " v3.1.1 "
6
6
},
7
7
{
8
8
"repo" : " devenv-github-workflows" ,
9
- "version" : " v4.1.4 "
9
+ "version" : " v6.0.1 "
10
10
},
11
11
{
12
12
"repo" : " devenv-github-templates" ,
13
- "version" : " v1.0.3 "
13
+ "version" : " v1.0.5 "
14
14
},
15
15
{
16
16
"repo" : " devenv-devcontainer-setup" ,
17
- "version" : " v1.4.7 "
17
+ "version" : " v2.2.0 "
18
18
}
19
19
],
20
20
"variables" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"packages" : {
3
3
"https://github.com/eclipse-velocitas/pkg-velocitas-main.git" : " v0.0.2" ,
4
- "https://github.com/eclipse-velocitas/devenv-devcontainer-setup.git" : " v2.0 .0" ,
5
- "https://github.com/eclipse-velocitas/devenv-runtimes.git" : " v3.0.0 " ,
6
- "https://github.com/eclipse-velocitas/devenv-github-templates.git" : " v1.0.3 " ,
7
- "https://github.com/eclipse-velocitas/devenv-github-workflows.git" : " v5 .0.0 "
4
+ "https://github.com/eclipse-velocitas/devenv-devcontainer-setup.git" : " v2.2 .0" ,
5
+ "https://github.com/eclipse-velocitas/devenv-runtimes.git" : " v3.1.1 " ,
6
+ "https://github.com/eclipse-velocitas/devenv-github-templates.git" : " v1.0.5 " ,
7
+ "https://github.com/eclipse-velocitas/devenv-github-workflows.git" : " v6 .0.1 "
8
8
},
9
9
"components" : [
10
10
" vapp-core-python" ,
22
22
"appManifestPath" : " ./app/AppManifest.json" ,
23
23
"githubRepoId" : " <myrepo>"
24
24
},
25
- "cliVersion" : " v0.6.3 "
25
+ "cliVersion" : " v0.9.0 "
26
26
}
Original file line number Diff line number Diff line change 5
5
{
6
6
"type" : " vehicle-signal-interface" ,
7
7
"config" : {
8
- "src" : " https://github.com/COVESA/vehicle_signal_specification/releases/download/v3 .0/vss_rel_3 .0.json" ,
8
+ "src" : " https://github.com/COVESA/vehicle_signal_specification/releases/download/v4 .0/vss_rel_4 .0.json" ,
9
9
"datapoints" : {
10
10
"required" : [
11
11
{
You can’t perform that action at this time.
0 commit comments