From ad699274f7808fc985223c67a4b9ad5febeb8ead Mon Sep 17 00:00:00 2001 From: alterNERDtive Date: Tue, 20 Jun 2023 08:43:02 +0200 Subject: [PATCH] properly defined cursemaven dependencies --- build.gradle | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index ebfd1b5..665afd5 100644 --- a/build.gradle +++ b/build.gradle @@ -143,10 +143,17 @@ repositories { // Put repositories for dependencies here // ForgeGradle automatically adds the Forge maven and Maven Central for you - // If you have mod jar dependencies in ./libs, you can declare them as a repository like so: - flatDir { - dir 'libs' + maven { + url "https://cursemaven.com" + content { + includeGroup "curse.maven" + } } + + // If you have mod jar dependencies in ./libs, you can declare them as a repository like so: + //flatDir { + // dir 'libs' + //} } dependencies { @@ -157,6 +164,16 @@ dependencies { annotationProcessor 'org.spongepowered:mixin:0.8.5:processor' + implementation fg.deobf('curse.maven:vault-hunters-official-mod-458203:4570130') + + // Vault dependency + implementation fg.deobf("curse.maven:curios-309927:4418032") + + // util + implementation fg.deobf("curse.maven:lazydfu-433518:3209972") + implementation fg.deobf("curse.maven:modernfix-790626:4593891") + implementation fg.deobf("curse.maven:configured-457570:4462832") + // Real mod deobf dependency examples - these get remapped to your current mappings // compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") // Adds the full JEI mod as a runtime dependency @@ -168,7 +185,6 @@ dependencies { // For more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html - implementation fg.deobf('iskallia.vault:the_vault:1.18.2-3.8.0.2246') } // Example for how to get properties into the manifest for reading at runtime.