I am using maven-gae-plugin
from http://code.google.com/p/maven-gae-plugin/ to create a multi-module project using inheritance (parent-project reference)
The structure that I have is as below:
|
`-- pom.xml
|-- base-api-project (packaging=jar)
| `-- pom.xml
|-- main-www-project (packaging=war)
| `-- pom.xml
The root pom.xml
is configured as parent + aggregator (with reference to the modules
).
When I build using the root pom.xml, everything is compiled and packaged great.
However, when I run mvn gae:run
in the main-www-project
folder, I get an error that the base-api-project
is not found in the registered repositories. I scans all registered repositories...
But my question is... if it's already there in ~/.m2/repository
, then why should I hunt across the net?
I there something wrong that I'm doing?