WIP: implement mod #1

Draft
Stachelbeere1248 wants to merge 9 commits from LovelyBunny/zombies-utils_fabric:master into master
3 changed files with 12 additions and 3 deletions
Showing only changes of commit cc7c711bb7 - Show all commits

View file

@ -11,7 +11,11 @@ base {
}
repositories {
maven { url 'https://repo.hypixel.net/repository/Hypixel/' }
maven { url 'https://repo.hypixel.net/repository/Hypixel/' },
maven {
name 'Xander Maven'
url 'https://maven.isxander.dev/releases'
}
}
loom {
@ -32,7 +36,10 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// other deps
modImplementation 'net.hypixel:mod-api:1.0.1'
modImplementation "dev.isxander:yet-another-config-lib:${project.yacl_version}"
}
processResources {
@ -81,4 +88,4 @@ publishing {
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
}

View file

@ -16,3 +16,4 @@ archives_base_name=zombies-utils
# Dependencies
fabric_version=0.123.2+1.21.5
yacl_version=3.6.6+1.21.5-fabric

View file

@ -33,7 +33,8 @@
"minecraft": "~1.21.5",
"java": ">=21",
"fabric-api": "*",
"hypixel-mod-api": ">=1.0.1"
"hypixel-mod-api": ">=1.0.1",
"yet_another_config_lib_v3": ">=3.6.6"
},
"suggests": {}
}