I have a garden-variety multimodule project. Its aggregator pom in turn inherits from a non-SNAPSHOT parent present in my local repository and in my Nexus.
This project builds and deploys fine. When I run mvn site on it (maven-site-plugin 3.2), the Maven site plugin cannot resolve the parent. The parent stanza looks like this: <parent> <groupId>foo</groupId> <artifactId>bar</artifactId> <version>16</version> </parent> (note the lack of <relativePath>). Adding <relativePath/> doesn't help or further hurt. How can I make the site plugin build my multi-module project? Best, Laird -- http://about.me/lairdnelson
