Hello, I've converted projects from M1 to M2 and now have just few decisions to make.
I use parent pom.xml to hold all things that are shared like version, groupId etc. Parent pom has modules and expects the module projects to be as subdirectories of the parent pom location. Every module has its own pom.xml file and here comes my question: *should a module's pom.xml be stored with the parent pom project or the actual module projects?* If I store the xml files with the parent pom project then I can check out just parent project and have modules checkout subsequently by using maven. If I store them with the projects then I have to write a shell script to check out the projects from terminal. Also since *parent pom is installed in my local repository is there** a way to copy it to an arbitrary location using maven command?* * * I am open to all suggestions and "best practices" guidelines. * * Thanks, Dave
