Jump to content

[1.14.4] Gradle cannot download/resolve MCP mappings


Arcaeca

Recommended Posts

So I just today realized the source in my Eclipse project is actually supposed to be human-readable and not 99% methods with the SRG names like func_177716_a, so I looked back in the build.gradle that the project was generated from, aaaaaaand whoops, I had accidentally commented out the MCP mappings line entirely, which probably explains that. So now I made a new folder in the Eclipse workspace folder and am trying to build the project clean from scratch again, but gradlew genEclipseRuns keeps terminating in under 30 seconds because it keeps failing to resolve the MCP mappings.

It's not working with stable 58:

minecraft {
	...	
	mappings = 'stable_58'
	...
}

Terminal output: https://pastebin.com/zvUMcjLN

And it's not working with the most recent 1.14.4 snapshot:

minecraft {
	...
	mappings = 'snapshot_20200119'
	...
}

Terminal output: https://pastebin.com/gkHe5vdw

So... if it can't download the stable release... and it can't download the snapshot... what does that leave me with if I'm modding for 1.14.4?

(This is my first time trying to make a mod by the way, so if other versions of stable/snapshot work for 1.14.4 I am not as yet aware of it)

build.gradle attached just in case.

build.gradle

Link to comment
Share on other sites

If you look at the line that is commented out:

Quote

// mappings channel: 'snapshot', version: '20190719-1.14.3'

 It shows you the format to use.

Comment out/delete the line(s) you added, uncomment that one, and just change the version to a newer version.

The last 1.14.4 version I see is mcp_snapshot-20200119-1.14.4

So change the "version: '20190719-1.14.3'" to "version: '20200119-1.14.4'" (but leave the channel: 'snapshot' there) and rerun your setup tasks, and you should be good to go.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.