WIP: implement mod #1
3 changed files with 12 additions and 3 deletions
|
@ -11,7 +11,11 @@ base {
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
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 {
|
loom {
|
||||||
|
@ -32,7 +36,10 @@ dependencies {
|
||||||
|
|
||||||
// Fabric API. This is technically optional, but you probably want it anyway.
|
// Fabric API. This is technically optional, but you probably want it anyway.
|
||||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||||
|
|
||||||
|
// other deps
|
||||||
modImplementation 'net.hypixel:mod-api:1.0.1'
|
modImplementation 'net.hypixel:mod-api:1.0.1'
|
||||||
|
modImplementation "dev.isxander:yet-another-config-lib:${project.yacl_version}"
|
||||||
}
|
}
|
||||||
|
|
||||||
processResources {
|
processResources {
|
||||||
|
|
|
@ -16,3 +16,4 @@ archives_base_name=zombies-utils
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
fabric_version=0.123.2+1.21.5
|
fabric_version=0.123.2+1.21.5
|
||||||
|
yacl_version=3.6.6+1.21.5-fabric
|
||||||
|
|
|
@ -33,7 +33,8 @@
|
||||||
"minecraft": "~1.21.5",
|
"minecraft": "~1.21.5",
|
||||||
"java": ">=21",
|
"java": ">=21",
|
||||||
"fabric-api": "*",
|
"fabric-api": "*",
|
||||||
"hypixel-mod-api": ">=1.0.1"
|
"hypixel-mod-api": ">=1.0.1",
|
||||||
|
"yet_another_config_lib_v3": ">=3.6.6"
|
||||||
},
|
},
|
||||||
"suggests": {}
|
"suggests": {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue