mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Add sponge_plugins.json meta file
This commit is contained in:
parent
9cf54a3e8c
commit
c5cfbcf3d8
1 changed files with 63 additions and 0 deletions
63
tests/content/sponge/sponge_plugins.json
Normal file
63
tests/content/sponge/sponge_plugins.json
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"loader": {
|
||||||
|
"name": "java_plain",
|
||||||
|
"version": "1.0"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"global": {
|
||||||
|
"version": "8.0.0",
|
||||||
|
"links": {},
|
||||||
|
"branding": {},
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "Name",
|
||||||
|
"description": "Author"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dependencies": [
|
||||||
|
{
|
||||||
|
"id": "spongeapi",
|
||||||
|
"version": "8.1.0",
|
||||||
|
"load-order": "after",
|
||||||
|
"optional": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"plugins": [
|
||||||
|
{
|
||||||
|
"id": "exampleplugin",
|
||||||
|
"entrypoint": "example.ExamplePlugin",
|
||||||
|
"name": "ExamplePlugin",
|
||||||
|
"description": "Description",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"branding": {},
|
||||||
|
"links": {},
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "Name",
|
||||||
|
"description": "Author"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dependencies": [
|
||||||
|
{
|
||||||
|
"id": "spongeapi",
|
||||||
|
"version": "8.1.0",
|
||||||
|
"load-order": "after",
|
||||||
|
"optional": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "required",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"load-order": "after",
|
||||||
|
"optional": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "optional",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"load-order": "after",
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue