You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The instructions for Gradle 6.2+ suggests using an exclusiveContent block, this however won't work with ForgeGradle as it prevents the DeobfuscatingRepo from providing the deobfuscated artifacts (which have the same group as the original).
The text was updated successfully, but these errors were encountered:
Just a note that it won't work for ForgeGradle (3-6, FG2 and below iirc change the group) and NeoGradle 6. NeoGradle 7 will work just fine with it since we no longer do obf/deobf.
fg.deobf transforms the dependency GAV from {group}:{artifact}:{version} to {group}:{artifact}:{version}_mapped_{mappings-channel}_{mappings-version}, the DeobfuscatingRepo then provides those dependencies dynamically, remapping the originals.
The exclusiveContent block filter on the group that is currently recommended prevents that from happening, as anything under that group only checks the CurseMaven repo, preventing the DeobfuscatingRepo from providing those mapped dependencies.
The instructions for Gradle 6.2+ suggests using an
exclusiveContent
block, this however won't work with ForgeGradle as it prevents theDeobfuscatingRepo
from providing the deobfuscated artifacts (which have the same group as the original).The text was updated successfully, but these errors were encountered: