I am starting to migrate from ANT to Gradle and I have multiple projects which rely on one another. They are not all in the same path, meaning that they are not all under a single project but still they have dependencies with one another.
I read that in Gradle in order to define a dependency between two projects, they need to be under the same root project.
Can I avoid this?
how can I give project compile(..) a path which is outside of the current path?
In other words, I don't want to start changing the path of the projects, for now.