We have a modpatcher system for years that worked fine to patch any mod (ranging from 1.10 version of mc all way to 1.16)
However i no longer can compile any of our modpatcher system except if its a 1.16 mc version
1.10.2 , 1.12.2 i cannot even compile my mod anymore
Could not resolve all dependencies for configuration ':forgeGradleMc'.
> Could not find forgeSrc.jar (net.minecraftforge:forgeSrc:1.10.2-12.18.3.2511).
Searched in the following locations:
https://files.minecraftforge.net/maven/net/minecraftforge/forgeSrc/1.10.2-12.18.3.2511/forgeSrc-1.10.2-12.18.3.2511.jar
Could not resolve all files for configuration ':forgeGradleUserDevPackage'.
> Could not find forge-userdev.jar (net.minecraftforge:forge:1.12.2-14.23.5.2855).
Searched in the following locations:
https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.12.2-14.23.5.2855/forge-1.12.2-14.23.5.2855-userdev.jar
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
From wat i read online here i need to change
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven"
}
To
maven {
name = "forge"
url = "https://maven.minecraftforge.net"
}
Since files.minecraftforge.net no longer works?
wel i done that and yet it keeps pointing to files.minecraftforge.net, i for the life of me cannot change it to the new maven.minecraftforge.net
i have try'd
gradlew --refresh-dependencies
No luck
I modified manually .idea\jarRepositories.xml to point to maven.minecraftforge.net
No luck
I deleted my whole .gradle userfolder, reimported the project (with the maven pointing to maven.minecraftforge.net)
No luck
What the hell is going on? this was working for years and now... i can't get anything to build