Excluding Gradle plugin dependencies in submodules
I have two different gradle plugins, one in the root project, and another in a submodule. The thing is, I'm getting a reflection related stacktrace when loading the Gradle project which originates from a dependency (I think it was something like Jackson faster xml or something). Removing said plugin in the root project fixes this issue.
My conclusion from that is that the plugin in the root project has a different version of that dependency than the one used by the plugin in the submodule. How do I exclude plugin dependencies in submodules?
(Sorry for minimal information on that stacktrace, I'm traveling at the moment)
My conclusion from that is that the plugin in the root project has a different version of that dependency than the one used by the plugin in the submodule. How do I exclude plugin dependencies in submodules?
(Sorry for minimal information on that stacktrace, I'm traveling at the moment)