Working in a multi-module Maven project, call it an “application.” I need to work with the source of one of the dependencies, call it "lib" and be able to easily test / debug the "application" against my changes in "lib".
In Eclipse, this is an option for its Maven and Gradle plugins, and this is obvious since Eclipse does not connect the concepts of “workspace” and “project” as much as IntelliJ. When I cloned the repo for "lib", IntelliJ suggested creating a new project for it, but how to make the "application" use the local working copy of "lib" for compilation and runtime?
In other words, can IntelliJ encapsulate execution build installin "lib" behind the scenes so that the "application" uses the updated (snapshot)?
E-riz source
share