diff --git a/build.gradle b/build.gradle index 9af532f..afc746a 100644 --- a/build.gradle +++ b/build.gradle @@ -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. } -} \ No newline at end of file +} diff --git a/gradle.properties b/gradle.properties index 29518a5..aaf68a2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 332d8b0..5235bee 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -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": {} }