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
This time, when a mod that has a mixin, coremod and a normal forge mod in one jar is added as a standard compile or runtime dependency, mod mod won't get loaded. The same jar file is loaded when added as deobfCompile dependency, but what I want is a runtime dependency, not compile.
I too ran into this problem, but you can use deobfProvided as quick workaround. if you do that, you'll lose comments when browsing through your code, and it messes with the variable names.
deobfProvided is the exact opposite of what I need. Provided dependencies are used at compile time but not added to class path at runtime. I want something is on the classpath at runtime but that I don't have access to when compiling. It's way too easy to accidentally use some implementation detail from the implementation jar.
The point is that it should just work without messing around in IDE settings every single time I refresh gradle project. ForgeGradle also has runClient and runServer tasks that won't really work without adding a runtime dependency there.
Issue looks similar to #207.
This time, when a mod that has a mixin, coremod and a normal forge mod in one jar is added as a standard
compile
orruntime
dependency, mod mod won't get loaded. The same jar file is loaded when added asdeobfCompile
dependency, but what I want is a runtime dependency, not compile.MANIFEST.MF
contains:The text was updated successfully, but these errors were encountered: