RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Jörg Schaible
Hi Ryan, Sonnek, Ryan wrote on Friday, March 19, 2004 4:30 PM: I think you answered your own question. The only reason I would suggest using the flattened structure is if you are using eclipse as your IDE. I use eclipse for all of my projects and the flattened structure makes a lot of sense

RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Michael MATTOX
now, in eclipse you CAN NOT mount 3 projects; one for the parent, and one for each subproject. This is because the files for the subprojects are already included in the parent project. If your subprojects extend a project.xml in parrellel with them, you won't run into this problem. Ex:

RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Michael MATTOX
It will not work to have this mounted as an eclipse project because of the problems I explained before. If you are using eclipse as your CVS client, you will likely want this mounted as an eclipse project in order to keep info synchronized. If you are using a different CVS client, and

RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Jörg Schaible
: RE: Directory structure for projects subprojects - nested or parallel? Hi Ryan, Sonnek, Ryan wrote on Friday, March 19, 2004 4:30 PM: I think you answered your own question. The only reason I would suggest using the flattened structure is if you are using eclipse as your IDE. I use

RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Jörg Schaible
gr Hit sent ... Sonnek, Ryan wrote on Friday, March 19, 2004 5:02 PM: Ok, In order to use maven in a multiproject setting, the child projects extend the parent project. The problem lies in having the parent project mounted in eclipse as a project with a child project underneath. It would

Re: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Charles N. Harvey III
What doesn't work is when you run maven eclipse from the command line maven re-writes your .classpath and .project files. If you run: maven -Dgoal=eclipse multiproject:goal it will supposedly look into each directory and then build the .classpath based on each sub project's project.xml file.

RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Jörg Schaible
Michael MATTOX wrote on Friday, March 19, 2004 5:25 PM: now, in eclipse you CAN NOT mount 3 projects; one for the parent, and one for each subproject. This is because the files for the subprojects are already included in the parent project. If your subprojects extend a project.xml in

RE: Directory structure for projects subprojects - nested or parallel?

2004-03-19 Thread Jörg Schaible
Hi Charles, Charles N. Harvey III wrote on Friday, March 19, 2004 5:46 PM: What doesn't work is when you run maven eclipse from the command line maven re-writes your .classpath and .project files. If you run: maven -Dgoal=eclipse multiproject:goal it will supposedly look into each directory