When I use maven projects in eclipse they automatically manage dependencies. That is - if the project A is imported to eclipse, all other projects using A have the project itself in "build path" instead of the artifact.
This makes changes done in project A instantly visible to e.g. unit tests in other projects.
I have a maven project B depending on gradle project A. How to replicate this behaviour? Currently I need to rebuild B (and deploy to local maven repo) whenever I change it.