Hi Hi,
This is the error I am getting.... which is causing my sites to build/behave
badly. The model file path is wrong in the log below, and the project is
"unknown"... not sure why any of this is happening....
[INFO] [site:site]
[INFO] Unable to load parent project from a relative path: Could not find
the model file '/data/workspaces/mycompany/parent/../pom.xml'. for project
unknown
[INFO] Parent project loaded from repository.
This is my structure....
/myproject/parent/pom.xml
/myproject/module-1/pom.xml
/myproject/module-2/pom.xml
/myproject/module-3/pom.xml
This is my <parent> inside each module-X....
<parent>
<groupId>myproject</groupId>
<artifactId>parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Any help would be great!!! :)