Minor version changes such as 1.12.1 -> 1.12.2 or 1.16.3 -> 1.16.4 or 1.19 -> 1.19.4 typically work already, as not much really changed in the code.
I would recommend you try it and see if it works anyways.
If you already tried it, then I would try using the rest of your modpack at the higher version of 1.19.4 if possible.
If you want to physically backport the code, then say so, so we can get you the resources to do it. It shouldn't be too hard to do, since there's typically only bugfixes and tiny changes to the codebase, but if you haven't coded in java before, it might be a long process to setup the project.
This is an extremely late reply, and I doubt you will see this anyways.
To anyone who reads this in the future, 1.7.10 comes with a ForgeGradle version that is very deprecated (1.2 or something).
Go to your build.gradle file and copy the buildscript block below and replace what is in yours:
Then go to your gradle\wrapper\gradle.properties file and change the gradle version to something above 4.0. (I personally use gradle version 4.9, because this is commonly supported with other versions such as 1.12.2) You can just change the numbers in gradle-4.9-bin.zip to whatever version you want.
Finally run gradlew --refresh-dependencies to refresh your cache or whatever
What is happening is:
- Maven does not support the http protocol anymore for security reasons, meaning you need to change all links to https
- "files.minecraftforge.net" is deprecated into "maven.minecraftforge.net"
- ForgeGradle for 1.7.10 is very outdated, meaning you must forcibly update according to the solution below
1
Minor version changes such as 1.12.1 -> 1.12.2 or 1.16.3 -> 1.16.4 or 1.19 -> 1.19.4 typically work already, as not much really changed in the code.
I would recommend you try it and see if it works anyways.
If you already tried it, then I would try using the rest of your modpack at the higher version of 1.19.4 if possible.
If you want to physically backport the code, then say so, so we can get you the resources to do it. It shouldn't be too hard to do, since there's typically only bugfixes and tiny changes to the codebase, but if you haven't coded in java before, it might be a long process to setup the project.
1
This is an extremely late reply, and I doubt you will see this anyways.
To anyone who reads this in the future, 1.7.10 comes with a ForgeGradle version that is very deprecated (1.2 or something).
Go to your build.gradle file and copy the buildscript block below and replace what is in yours:
Then go to your gradle\wrapper\gradle.properties file and change the gradle version to something above 4.0. (I personally use gradle version 4.9, because this is commonly supported with other versions such as 1.12.2) You can just change the numbers in gradle-4.9-bin.zip to whatever version you want.
Finally run gradlew --refresh-dependencies to refresh your cache or whatever
What is happening is:
- Maven does not support the http protocol anymore for security reasons, meaning you need to change all links to https
- "files.minecraftforge.net" is deprecated into "maven.minecraftforge.net"
- ForgeGradle for 1.7.10 is very outdated, meaning you must forcibly update according to the solution below
- "http://s3.amazonaws.com/Minecraft.Download/versions/1.7.10/1.7.10.jar" is no longer functioning, meaning the update below should provide the proper resources.
Credits: https://github.com/anatawa12/ForgeGradle-1.2
https://stackoverflow.com/questions/74504545/forge-1-7-10-error-while-gradlew-setupdecompworkspace