I've set up Forge/gradle according to pahimar's method, which ran smoothly through setupDecompWorkspace and the Idea setup. However, upon trying to launch the client in Idea for the first time, I get this error log:
Exception in thread "main" java.lang.RuntimeException: java.io.FileNotFoundException: C:\Users\Gelinas\.gradle\caches\minecraft\assets\virtual\{ASSET_INDEX}\indexes\{ASSET_INDEX}.json (The system cannot find the path specified)
at com.google.common.base.Throwables.propagate(Throwables.java:160)
at GradleStart.setupAssets(GradleStart.java:260)
at GradleStart.startClient(GradleStart.java:82)
at GradleStart.main(GradleStart.java:56)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
Caused by: java.io.FileNotFoundException: C:\Users\Gelinas\.gradle\caches\minecraft\assets\virtual\{ASSET_INDEX}\indexes\{ASSET_INDEX}.json (The system cannot find the path specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:131)
at java.io.FileReader.<init>(FileReader.java:72)
at GradleStart.loadAssetsIndex(GradleStart.java:266)
at GradleStart.setupAssets(GradleStart.java:204)
... 7 more
Pahimar's eclipse folder (the eclipse folder that is in the same folder as the gradle stuff) shows assets being added to it after the gradle setup, but mine is empty of anything but .metadata. Any help would be greatly appreciated, because no matter what I reinstall, the issue continues to arise.