forked from addonscript/addonscript-spec
Add namespace to relation
This commit is contained in:
parent
fb71be75d7
commit
1c529e62c9
1 changed files with 8 additions and 2 deletions
|
@ -2,7 +2,8 @@
|
|||
|
||||
```json
|
||||
{
|
||||
"id": "namespace:othermod",
|
||||
"id": "othermod",
|
||||
"namespace": "com.example",
|
||||
"version": "[1.0]",
|
||||
"repositories": ["repo1"],
|
||||
"flags": [],
|
||||
|
@ -14,10 +15,15 @@
|
|||
|
||||
### id
|
||||
|
||||
This is the ID or namespaced ID of the addon this relation refers to.
|
||||
This is the ID of the addon this relation refers to.
|
||||
|
||||
## Optional properties
|
||||
|
||||
### namespace
|
||||
|
||||
This is the [namespace](../concepts/namespaces.md) of the related addon. This property will be implicitly equal to the
|
||||
[namespace of the addon](addon.md#namespace), if it was not set explicitly.
|
||||
|
||||
### version
|
||||
|
||||
This is a [maven version range](../concepts/versioning.md#dependancy-version-requirement-specification) that specifies, which versions
|
||||
|
|
Loading…
Reference in a new issue