I want to gradually migrate the multi-module maven assembly to the multi-module gradle construct.
I am currently using m2e maven tooling in eclipse, and I like that if projectA is dependent on projectB and both projects in my eclipse workspace, m2e is smart enough to use local .class files for projectB instead of using the .jar file from my maven repository. Let me call this feature "local resolution".
So, can the eclipse gradle and m2e tool play beautifully together?
- If the gradle project depends on the maven project, is it possible to locally resolve the maven project.
- If the maven project depends on the gradle project, can the gradle project be locally resolved
- If the gradle project depends on the gradle project, is it possible to locally resolve the dependent gradle project?
source share