I am looking for a way to reference modules I am defining inside of a plugin from my main project.
To be more specific, we have a UI plugin that houses a bunch of UI controls. I want to move all my javascript dependancies for these controls (such as jQuery) into the UI plugin, and be able to reference them in my main project, something like
dependsOn 'uiplugin-jQuery'
Is there a way to do this or do I need to have all my resource modules declared in the main project?
This is using Grails and the Resources 1.2.1 plugin.