This is more of aesthetic question since I want to make my life easier. I have maven project structure like this:
foo-project (parent)
- foo-business (child-module)
- foo-dao (child-module)
- foo-app (child-module)
I run my maven commands from command prompt, I want to trigger install of all project from maven module, meaning if I am in module dir I want to trigger install from there and not to navigate to parent pom dir.
Thank you