ParentFolder
------ pom.xml
------ Module1
------------pom.xml
------Module2
------------pom.xml
Based on the input provided to ParentFolder/pom.xml, either Module1 or Module2 should be checked out first from the SVN and then build should be performed.
However, Maven looks for existence of module's pom.xml before checkout goal of ParentFolder/pom.xml gets executed. Due to this build is failing evern before checkout.
Is there any to resolve this issue?