
Jdk-7167583 Restructure Directory Structure In Install Repo Tool
The first thing I really recommend is to restructure the projects folders.which means to have the projects folder represent the structure which means NOT flatten the structure. Landscape design software professional. +-- parent-pom (pom.xml) +--- module1 (pom.xml) +--- module2 (pom.xml) +--- module3 (pom.xml) As a result of that the modules section your parent will be simplified like this: module1 module2 module3 Furthermore the parent entries in your modules can be simplified as well like this: com.cws.cs.lendingsimulationservice parent-pom 1.0.6.which brings me to the next point: If all your current project define their parent as above this is simply wrong, cause will try to find the parent within the repository and not in a upper level folder. In other words this is causing of much of your problems with releasing etc. If we would fix this problem it has to look like this which I can't recommend: com.cws.cs.lendingsimulationservice parent-pom 1.0.6./parent-pom/pom.xml An other thing which I observe is that you don't use SNAPTSHOT's which will be replaced by the release plugin during the release phase. And in relationship to that it will automatically change all versions in the appropriate parents etc.