Hi there,
I have the following problem: I was trying to do a multiproject for a J2EE project, and followed some examples to build a tree structure with a top project containing common stuff like this:
project-root
project.xml
maven.xml
project.properties [including maven.multiproject.includes=*/*/project.xml]
modules
first-module [maven stuff inside, including <extend>${basedir}/../../project.xml</extend>]
second-module [maven stuff inside, including <extend>${basedir}/../../project.xml</extend>]
This worked like a charm, but then I tried to use the Mevenide plugin and opened all the projects in Eclipse. I found that I couldn't open the top project because overlapped with the inner projects, So I thought to do the following, so I could open all the projects in Eclipse:
project-root
project
project.xml
maven.xml
project.properties [including maven.multiproject.includes=../*/*/project.xml]
modules
first-module [maven stuff inside, including <extend>${basedir}/../../project/project.xml</extend>]
second-module [maven stuff inside, including <extend>${basedir}/../../project/project.xml</extend>]
and found that multiproject was no longer finding the projects under modules/. Is this expected behavior, or have I found a bug? Maybe I'm doing anything silly? Is there any way to make this work?
Thanks in advance Jose
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
