Mark mod as library.
build / build (21) (push) Failing after 10m52s

This commit is contained in:
2024-11-29 12:53:22 -07:00
parent f874485b77
commit b75596fbeb
2 changed files with 36 additions and 29 deletions
+2 -2
View File
@@ -9,11 +9,11 @@ yarn_mappings=1.20.1+build.10
loader_version=0.16.7 loader_version=0.16.7
# Mod Properties # Mod Properties
mod_version=1.0.7 mod_version=1.1.0
maven_group=dev.bigduckie maven_group=dev.bigduckie
archives_base_name=static-content archives_base_name=static-content
# Dependencies # Dependencies
fabric_version=0.92.2+1.20.1 fabric_version=0.92.2+1.20.1
static_data_version=1.0.7+1.20.1 static_data_version=1.1.0+1.20.1
+34 -27
View File
@@ -1,29 +1,36 @@
{ {
"schemaVersion": 1, "schemaVersion": 1,
"id": "static-content", "id": "static-content",
"version": "${version}", "version": "${version}",
"name": "Static Content", "name": "Static Content",
"description": "Wrapper for Static Data that allows for easy registration of game content with cross-mod compatibility.", "description": "Wrapper for Static Data that allows for easy registration of game content with cross-mod compatibility.",
"authors": [ "authors": [
"Big Duckie", "Big Duckie",
"Draylar" "Draylar"
], ],
"contact": { "contact": {
"homepage": "https://fabricmc.net/", "homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod" "sources": "https://github.com/FabricMC/fabric-example-mod"
}, },
"license": "MIT", "license": "MIT",
"icon": "assets/static-content/icon.png", "icon": "assets/static-content/icon.png",
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"dev.bigduckie.staticcontent.StaticContent" "dev.bigduckie.staticcontent.StaticContent"
] ]
}, },
"depends": { "custom": {
"fabricloader": ">=0.16.7", "modmenu": {
"minecraft": "~1.20.1", "badges": [
"java": ">=17", "library"
"fabric-api": "*" ]
} }
},
"depends": {
"fabricloader": ">=0.16.7",
"minecraft": "~1.20.1",
"java": ">=17",
"fabric-api": "*"
}
} }