Hello,
> it's not required to put the subprojects in the directory of the root
> project. You can place them all in separate directories
> like Eclipse does and reference to it by relative path. I think you
> have a directory structure like
> wokspace
> |-- myApp
> |-- common
> ...
> so you have to create a pom.xml in myApp with
> ...
> <modules>
> <module>../common</module>
> ...
> </modules>
> ...
no project structure is
workspace
|-- my-app (is also the CVS-module)
|-- presentation
|-- common
|-- web
|-- pom.xml (the master pom)
> I think this will solve your problem.
>
> If common, presentation and web are independent of myApp it could be a
> better solution to reference them as dependency
> and let maven do the rest
I will try the relative paths by adding the master pom to a subdir.
Anyway, would be a possibility to setup an environment for eclipse, with
the given structure?