You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/documentation/docs/pages/Configuration.md
+16-11Lines changed: 16 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ See the list of [clients](https://github.com/redhat-developer/yaml-language-serv
18
18
## Example
19
19
20
20
```yaml
21
-
specVersion: "4.0"
21
+
specVersion: "5.0"
22
22
type: application|library|theme-library|module
23
23
metadata:
24
24
name: some.project.name
@@ -36,22 +36,22 @@ The type defines the default path mappings and build tasks. See [UI5 Builder: Ty
36
36
:::code-group Example
37
37
38
38
```yaml [application]
39
-
specVersion: "4.0"
39
+
specVersion: "5.0"
40
40
type: application
41
41
```
42
42
43
43
```yaml [library]
44
-
specVersion: "4.0"
44
+
specVersion: "5.0"
45
45
type: library
46
46
```
47
47
48
48
```yaml [theme-library]
49
-
specVersion: "4.0"
49
+
specVersion: "5.0"
50
50
type: theme-library
51
51
```
52
52
53
53
```yaml [module]
54
-
specVersion: "4.0"
54
+
specVersion: "5.0"
55
55
type: module
56
56
```
57
57
@@ -276,7 +276,7 @@ Projects that use the OpenUI5 framework cannot depend on projects that use the S
276
276
::: code-group Example
277
277
278
278
```yaml [application]
279
-
specVersion: "4.0"
279
+
specVersion: "5.0"
280
280
type: application
281
281
metadata:
282
282
name: my.company.app
@@ -291,7 +291,7 @@ framework:
291
291
```
292
292
293
293
```yaml [library]
294
-
specVersion: "4.0"
294
+
specVersion: "5.0"
295
295
type: library
296
296
metadata:
297
297
name: my.company.library
@@ -646,20 +646,20 @@ The default and configured server ports can always be overwritten with the CLI p
646
646
647
647
::: details Example
648
648
```yaml
649
-
specVersion: "4.0"
649
+
specVersion: "5.0"
650
650
type: application
651
651
metadata:
652
652
name: my.application
653
653
---
654
-
specVersion: "4.0"
654
+
specVersion: "5.0"
655
655
kind: extension
656
656
type: project-shim
657
657
metadata:
658
658
name: my.application.thirdparty
659
659
shims:
660
660
configurations:
661
661
lodash:
662
-
specVersion: "4.0"
662
+
specVersion: "5.0"
663
663
type: module
664
664
metadata:
665
665
name: lodash
@@ -752,7 +752,7 @@ A list of bundle definitions. A `bundleDefinition` contains of the following opt
752
752
A project must define a specification version by setting the `specVersion` property. UI5 CLI uses this information to detect whether the currently installed version is compatible to a project's configuration.
753
753
754
754
```yaml
755
-
specVersion: "4.0"
755
+
specVersion: "5.0"
756
756
[...]
757
757
```
758
758
@@ -771,6 +771,7 @@ Unless otherwise noted in the table below, UI5 CLI modules are backward compatib
771
771
772
772
Version | UI5 CLI Release
773
773
--- | ---
774
+
**5.0** | v5.0.0+
774
775
**4.0** | v4.0.0+
775
776
**3.2** | v3.8.0+
776
777
**3.1** | v3.5.0+
@@ -786,6 +787,10 @@ Version | UI5 CLI Release
786
787
**1.0** | v1.0.0+
787
788
**0.1** | v0.0.1+
788
789
790
+
### Specification Version 5.0
791
+
792
+
Specification Version 5.0 projects are supported by [UI5 CLI](https://github.com/UI5/cli) v5.0.0 and above.
0 commit comments