I've tried updating my build.gradle to reference 1.8.9-11.15.1.1722 and am getting this error when I run ./gradlew setupDecompWorkspace:
> #################################################
ForgeGradle 2.0-SNAPSHOT
https://github.com/MinecraftForge/ForgeGradle
#################################################
Powered by MCP unknown
http://modcoderpack.com
by: Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn, bspkrs
#################################################
:deobfCompileDummyTask
:deobfProvidedDummyTask
:getVersionJson
:extractUserdev
~/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/userdev/dev.json could not be parsed
:extractUserdev FAILED
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'Name of Mod'.
> java.io.FileNotFoundException: Inherited json file (1.8.9) not found! Maybe you are running in offline mode?
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
And here is the relevant part of the log when run with the --debug flag:
23:23:10.696 [DEBUG] [net.minecraftforge.gradle.util.delayed.DelayedBase] Resolving: {CACHE_DIR}/{API_GROUP_DIR}/{API_NAME}/{API_VERSION}/userdev/dev.json
23:23:10.707 [DEBUG] [net.minecraftforge.gradle.util.delayed.DelayedBase] Resolved: ~/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/userdev/dev.json
23:23:10.710 [DEBUG] [net.minecraftforge.gradle.util.delayed.DelayedBase] Resolving: {CACHE_DIR}/versionJsons
23:23:10.711 [DEBUG] [net.minecraftforge.gradle.util.delayed.DelayedBase] Resolved: ~/.gradle/caches/minecraft/versionJsons
23:23:10.765 [ERROR] [org.gradle.api.Project] ~/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/userdev/dev.json could not be parsed
The first file mentioned, dev.json, is exactly identical to the current one in the Forge repo, and although I admit I actually have no clue how Gradle works, the error messages seem to indicate that it runs aground on line 6 of that file when trying to read/parse ~/.gradle/caches/minecraft/versionJsons/1.8.9.json.
Unfortunately, beyond that, I've run out of ideas, and nobody else seems to have had this problem either. (Figures.)
I'm probably just doing something really stupidly wrong, but nevertheless, any help is gratefully appreciated.