I am new to Maven. I extracted a project from SVN from a client with the following structure:
projectName |--> pom.xml |--> jetty-wrapper |--> pom.xml |--> bin |--> pom.xml |--> projectName-common |--> pom.xml |--> bin |--> pom.xml |--> projectName-war |--> bin |--> pom.xml
pom.xml right under the 'projectName' (pom above) creates three modules
<modules> <module>projectName-common</module> <module>projectName-war</module> <module>jetty-wrapper</module> </modules>
But when you run mvn clean install from the projectName folder, projectName displays the following error
Child module [...]projectName\projectName-war\pom.xml of [...]projectName\pom.xml does not exist
The question is: should there be a pom.xml file right under the projectName-war as is the case with other modules that my client might have forgotten to transfer to SVN?
java maven
Mike
source share