I am trying to build a Grails plugin that will act as a "master plugin" for a suite of other Grails apps.
I am wondering if it is possible to somehow chain plugins together transitively? Pretend that Plugin A depends on Plugin B, and that Grails App GA1 uses (installs) Plugin A. When the developer does this install of Plugin A (the "master") to Grails App GA1, they end up installing Plugin A as well as Plugin B, transitively.
Is this possible? If so, how? If not, why, and is there a way to hack this or is there a better way to transitively install plugins in general?