ForgeGradle
ForgeGradle copied to clipboard
Minecraft mod development framework used by Forge and FML for the gradle build system
When `MavenArtifactDownloader#_download` is called with an artifact that is currently downloading, it [waits on the other thread](https://github.com/MinecraftForge/ForgeGradle/blob/FG_5.0/src/common/java/net/minecraftforge/gradle/common/util/MavenArtifactDownloader.java#L128) to complete the download. The problem is, that this is done *inside* the...
This is one of java's dumb default: https://github.com/MinecraftForge/ForgeGradle/blob/63b758333137a929ae37186ff8c10d1335f934d0/src/common/java/net/minecraftforge/gradle/common/util/DownloadUtils.java#L213-L237 if you don't explicitly set a timeout value, it will wait indefinitely for a response that may never arrive. Normally this works...
I'm working on a multi-module Minecraft Forge project. We were originally using a build script that compiled the dependency-modules into Jars and then had the master module depend on the...
This partially reverts cbf0f406851a8da00593415cd89fa8ab1e3c965d, changing Minecraft run tasks to use a normal `JavaExec`. The task is now configured normally, rather than configuration being deferred until when the task executes. This...
When using [this multiloader template](https://github.com/jaredlll08/MultiLoader-Template), ForgeGradle is running into an odd exception in `reobfJar` during `build`. I've tried experimenting with removing certain parts of the template, but couldn't pinpoint what...
Change minecraft assets URL to use https instead of http. The url http://resources.download.minecraft.net no longer accepts non-https requests and the getAssets tasks fail.
Currently, the generator for method and field CSV files, `OfficialChannelProvider`, distinguishes methods and fields by their prefix, which is `func_` / `m_` for methods and `field_` / `f_` for fields....
This issue was observed towards the end of the 1.19.3 porting process of Create. Create uses JarJar to include Flywheel so it does not need to be installed separately. The...
**Minecraft Version:** 1.18.2 **Forge Version:** 40.1.76 **Logs:** [crash-report](https://paste.feed-the-beast.com/view/7593098e) [log](https://paste.feed-the-beast.com/view/5ddff0c5) **Steps to Reproduce:** 1. jarjared no-mod lib into my mod 2. can't found class **Description of issue:** Not all jars in...