我如何告诉这个minecraft织物mod使用modmenu-2.0.14



我想更新这个mod(https://github.com/LambdAurora/MCPatcherPatcher)到minecraft版本1.17.1,我已经学到了很多。如果你一周前问我gradle是什么或github是如何工作的,我会瞪你一眼。我已经到了一个地步,我被困在更新这个mod:

FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring project ':fabric'.
> Could not resolve all dependencies for configuration ':fabric:modImplementation'.
> Could not find com.terraformersmc:modmenu:2.0.14.
Searched in the following locations:
- file:/C:/Users/thijm/.m2/repository/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
- https://repo.maven.apache.org/maven2/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
- https://aperlambda.github.io/maven/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
- file:/C:/Users/thijm/Desktop/test 1171/nieuw3/MCPatcherPatcher-main/.gradle/loom-cache/remapped_mods/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
- https://maven.fabricmc.net/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
- https://libraries.minecraft.net/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
- file:/C:/Users/thijm/.gradle/caches/fabric-loom/2.0.14/modmenu.jar
- file:/C:/Users/thijm/Desktop/test 1171/nieuw3/MCPatcherPatcher-main/.gradle/loom-cache/2.0.14/modmenu.jar
- https://server.bbkr.space/artifactory/libs-snapshot/com/terraformersmc/modmenu/2.0.14/modmenu-2.0.14.pom
Required by:
project :fabric

我想国防部需要这个pom文件[https://maven.terraformersmc.com/releases/com/terraformersmc/modmenu/2.0.14],但我不知道如何告诉它在哪里可以找到这个文件。我真的会感谢所有的帮助,谢谢:(

您需要将maven存储库添加到build.gradle文件的repositories部分:

repositories {
maven {
url "https://maven.terraformersmc.com/releases"
}
}

最新更新