Hello,

in my opinion you don't have a problem with maven but with Eclipse. Have you tried to post your problem to an Eclipse forum ?

Mit freundlichen Grüßen / Best Regards

Kai Uwe Bachmann
Am 15.08.2006 um 20:01 schrieb Kaiser, Hans:

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?


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to