I currently have an issue with a Gradle Kotlin project structure in which I have 2 modules. Module
How can I do this? Currently the shaded result of Module
Do I need to just shade the jar output from Module
A
uses some NMS code. Module B
needs to shade Module A
into itself but also remap Module A
from Mojang mappings to spigot mappings.How can I do this? Currently the shaded result of Module
B
just has the unmapped classes and methods, which can't be run.Do I need to just shade the jar output from Module
A
itself instead of using implementation(project(":module_A"))
?