I'm developping a mod that will depend on GTCEu.
I've started from the basic mod example in the forge documentation (https://docs.minecraftforge.net/en/1.20.x/gettingstarted/) and added gtceu as a dependency to the build.gradle file (and added https://maven.gtceu.com as a repository) just as described in https://github.com/GregTechCEu/GregTech-Modern.
dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
// vvv this line
implementation fg.deobf("com.gregtechceu.gtceu:gtceu-${minecraft_version}:${gtceu_version}")
}
minecraft_version is 1.20.1 and gtceu_version is 1.6.4
It seems gradle is unable to fetch GTCEu's dependencies, here is one example (there are 14 such errors):
Cause 1: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.lowdragmc.ldlib:ldlib-forge-1.20.1:1.0.34.
Searched in the following locations:
- https://maven.minecraftforge.net/com/lowdragmc/ldlib/ldlib-forge-1.20.1/1.0.34/ldlib-forge-1.20.1-1.0.34.module
- https://maven.minecraftforge.net/com/lowdragmc/ldlib/ldlib-forge-1.20.1/1.0.34/ldlib-forge-1.20.1-1.0.34.pom
- https://maven.minecraftforge.net/com/lowdragmc/ldlib/ldlib-forge-1.20.1/1.0.34/ldlib-forge-1.20.1-1.0.34.jar
Do I manually need to include these dependencies in my gradle dependencies? Or am I missing something? Followup issue, I have no clue where to get these dependencies, so if the answer to the first question is yes, I'd love some pointers.
Thank you