mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 01:55:34 +00:00
Add loadAfter
plugin setting
This commit is contained in:
parent
63b6b805cc
commit
e2cfe94bf0
@ -1,49 +1,63 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"title": "JSON schema for a Grasscutter Plugin",
|
"title": "JSON schema for a Grasscutter Plugin",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": true,
|
"additionalProperties": true,
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"plugin-name": {
|
"plugin-name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"pattern": "^[A-Za-z\\d_.-]+$"
|
"pattern": "^[A-Za-z\\d_.-]+$"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"name",
|
||||||
|
"description",
|
||||||
|
"mainClass"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"name": {
|
||||||
|
"description": "The unique name of plugin.",
|
||||||
|
"$ref": "#/definitions/plugin-name"
|
||||||
|
},
|
||||||
|
"mainClass": {
|
||||||
|
"description": "The plugin's initial class file.",
|
||||||
|
"type": "string",
|
||||||
|
"pattern": "^(?!org\\.bukkit\\.)([a-zA-Z_$][a-zA-Z\\d_$]*\\.)*[a-zA-Z_$][a-zA-Z\\d_$]*$"
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"description": "A plugin revision identifier.",
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"number"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"description": "Human readable plugin summary.",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"author": {
|
||||||
|
"description": "The plugin author.",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"authors": {
|
||||||
|
"description": "The plugin contributors.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"website": {
|
||||||
|
"title": "Website",
|
||||||
|
"description": "The URL to the plugin's site",
|
||||||
|
"type": "string",
|
||||||
|
"format": "uri"
|
||||||
|
},
|
||||||
|
"loadAfter": {
|
||||||
|
"description": "Plugins to load before this plugin.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"required": [ "name", "description", "mainClass" ],
|
|
||||||
"properties": {
|
|
||||||
"name": {
|
|
||||||
"description": "The unique name of plugin.",
|
|
||||||
"$ref": "#/definitions/plugin-name"
|
|
||||||
},
|
|
||||||
"mainClass": {
|
|
||||||
"description": "The plugin's initial class file.",
|
|
||||||
"type": "string",
|
|
||||||
"pattern": "^(?!org\\.bukkit\\.)([a-zA-Z_$][a-zA-Z\\d_$]*\\.)*[a-zA-Z_$][a-zA-Z\\d_$]*$"
|
|
||||||
},
|
|
||||||
"version": {
|
|
||||||
"description": "A plugin revision identifier.",
|
|
||||||
"type": [ "string", "number" ]
|
|
||||||
},
|
|
||||||
"description": {
|
|
||||||
"description": "Human readable plugin summary.",
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"author": {
|
|
||||||
"description": "The plugin author.",
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"authors": {
|
|
||||||
"description": "The plugin contributors.",
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"website": {
|
|
||||||
"title": "Website",
|
|
||||||
"description": "The URL to the plugin's site",
|
|
||||||
"type": "string",
|
|
||||||
"format": "uri"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -7,11 +7,13 @@ public final class PluginConfig {
|
|||||||
public String name, description, version;
|
public String name, description, version;
|
||||||
public String mainClass;
|
public String mainClass;
|
||||||
public String[] authors;
|
public String[] authors;
|
||||||
|
public String[] loadAfter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attempts to validate this config instance.
|
* Attempts to validate this config instance.
|
||||||
* @return True if the config is valid, false otherwise.
|
* @return True if the config is valid, false otherwise.
|
||||||
*/
|
*/
|
||||||
|
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
||||||
public boolean validate() {
|
public boolean validate() {
|
||||||
return name != null && description != null && mainClass != null;
|
return name != null && description != null && mainClass != null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user