Re: Different approach to Multiple Module Projects

2007-07-18 Thread Mark Hobson
On 18/07/07, John Casey <[EMAIL PROTECTED]> wrote: Not sure; I'm definitely not what you'd call a power user on Eclipse...I tend to learn only what I absolutely need to know in order to be productive with such tools, rather than really spending a lot of time optimizing my use of them... If that'

Re: Different approach to Multiple Module Projects

2007-07-18 Thread John Casey
Not sure; I'm definitely not what you'd call a power user on Eclipse...I tend to learn only what I absolutely need to know in order to be productive with such tools, rather than really spending a lot of time optimizing my use of them... If that's possible, and could be coded into the plugin

Re: Different approach to Multiple Module Projects

2007-07-18 Thread Stefano Bagnara
Is this similar to what m2clipse plugin already do when I run "Enable Maven2 support" on my right click menu for my eclipse project and then run "update sources" ? Stefano Syte Beimin ha scritto: > First of all I hope this is the right place to send my patch to. > At my company we're used to che

Re: Different approach to Multiple Module Projects

2007-07-18 Thread Mark Hobson
On 18/07/07, John Casey <[EMAIL PROTECTED]> wrote: The only objection I have to this approach is that it sets you up for introducing cyclic dependencies between modules. When all sources are in the same project, and look like they might have come from the same source tree, what's to stop you from

Re: Different approach to Multiple Module Projects

2007-07-18 Thread John Casey
The only objection I have to this approach is that it sets you up for introducing cyclic dependencies between modules. When all sources are in the same project, and look like they might have come from the same source tree, what's to stop you from crossing the boundaries imposed by the POM's

Re: Different approach to Multiple Module Projects

2007-07-17 Thread Syte Beimin
Thank you for pointing me in the right direction. I've submitted the patch through the url you suggested. I've made a little fix regarding the location of the test I included. It's now in the src/test/java directory :) So if anyone wants to try the new feature use the patch included in http://

Re: Different approach to Multiple Module Projects

2007-07-17 Thread Richard van Nieuwenhoven
Hi, The right place for maven-eclipse-plugin patch is http://jira.codehaus.org/browse/MECLIPSE i am also using many multi module projects, but i like it far more to: * checkout one multi module project * start maven-eclipse-plugin * import using the eclipse multi project importer all sub modules

Different approach to Multiple Module Projects

2007-07-17 Thread Syte Beimin
First of all I hope this is the right place to send my patch to. At my company we're used to check out an entire project from subversion. So we'll get all the modules of a project in one eclipse project. The eclipse plugin will create .project and .classpath files in each module directory. For