Update Concrete to support the new extensible update manifest format.

This commit is contained in:
2023-03-13 16:31:52 -07:00
parent 681c984b0a
commit 58aa162aa3
6 changed files with 76 additions and 1 deletions

62
artifacts/manifest.json Normal file
View File

@ -0,0 +1,62 @@
{
"items": [
{
"name": "foundation-bifrost",
"type": "bukkit-plugin",
"version": "DEV",
"dependencies": [
"foundation-core"
],
"files": [
{
"name": "foundation-bifrost-DEV-plugin.jar",
"type": "plugin-jar",
"path": "foundation-bifrost/build/libs/foundation-bifrost-DEV-plugin.jar"
}
]
},
{
"name": "foundation-chaos",
"type": "bukkit-plugin",
"version": "DEV",
"dependencies": [
"foundation-core"
],
"files": [
{
"name": "foundation-chaos-DEV-plugin.jar",
"type": "plugin-jar",
"path": "foundation-chaos/build/libs/foundation-chaos-DEV-plugin.jar"
}
]
},
{
"name": "foundation-core",
"type": "bukkit-plugin",
"version": "DEV",
"dependencies": [],
"files": [
{
"name": "foundation-core-DEV-plugin.jar",
"type": "plugin-jar",
"path": "foundation-core/build/libs/foundation-core-DEV-plugin.jar"
}
]
},
{
"name": "foundation-heimdall",
"type": "bukkit-plugin",
"version": "DEV",
"dependencies": [
"foundation-core"
],
"files": [
{
"name": "foundation-heimdall-DEV-plugin.jar",
"type": "plugin-jar",
"path": "foundation-heimdall/build/libs/foundation-heimdall-DEV-plugin.jar"
}
]
}
]
}