Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 1.16 KB

File metadata and controls

26 lines (14 loc) · 1.16 KB

PSA: Fixing gradle builds post 1/29/21

After around the 29-30th of January spongepowered, the maker of mixins used in minecraft forge clients and mods made some changes to their side that breaks building of all forge mods. Fortunately it is only a minor change an can be fixed in seconds.

This is the error you get if you try to compile a forge mod right now: Pic

The problem lies in your build.gradle file, The server has switched from a http protocol to a https protocol, so in your build.gradle file change all of the urls that have the word SPONGE in them. DON'T change any of the other urls. (There are normally 2 urls)

Pic Pic

Change http://repo.spongepowered.org/maven to https://repo.spongepowered.org/repository/maven-public/

or do it the chad way

Change http://repo.spongepowered.org/maven to https://repo.spongepowered.org/maven

Hope this helps!

Star and share!