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
Unfortunately, this has some problematic side effects. Namely, it means that making compileJava depend on anyJar task from the same project will immediately result in an unfixable task dependency loop. I discovered this while investigating an incompatibility between MixinGradle and Registration Utils, but it will pop up any time that you have, say, a compileOnly dependency on a local Jar task or the like.
The text was updated successfully, but these errors were encountered:
Currently, a
addMixinsTo...
task is created for every singlejar
task, and is made to depend on thecompileJava
task for the source set being configured: https://github.com/SpongePowered/MixinGradle/blob/master/src/main/groovy/org/spongepowered/asm/gradle/plugins/MixinExtension.groovy#L1024-L1043Unfortunately, this has some problematic side effects. Namely, it means that making
compileJava
depend on anyJar
task from the same project will immediately result in an unfixable task dependency loop. I discovered this while investigating an incompatibility between MixinGradle and Registration Utils, but it will pop up any time that you have, say, acompileOnly
dependency on a localJar
task or the like.The text was updated successfully, but these errors were encountered: