diff --git a/tests/content/sponge/sponge_plugins.json b/tests/content/sponge/sponge_plugins.json new file mode 100644 index 0000000..971b8c6 --- /dev/null +++ b/tests/content/sponge/sponge_plugins.json @@ -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 + } + ] + } + ] +} \ No newline at end of file