I did run it in the root originally, and I see now that the supported modules indeed have the correct dependencies, but the unsupported modules do not. In particular, the unsupported module I'm working on - CSV. Should I just do it by hand, or is there a way to persuade maven to do the unsupported modules?
Thanks, Lee On 5/8/2011 7:47 AM, Andrea Aime wrote: > On Sun, May 8, 2011 at 4:13 PM, lee-verizon<[email protected]> wrote: >> I have a basic question about how projects are/should be set up in >> eclipse. I used maven eclipse:eclipse to create .project and .classpath >> files for all the projects. But I see that the .classpath files have >> cross-project dependencies done using jar files rather than depending >> directly on the other projects in the eclipse workspace. For example, this: >> >> <classpathentry kind="var" >> path="M2_REPO/org/geotools/gt-api/8-SNAPSHOT/gt-api-8-SNAPSHOT.jar" >> sourcepath="M2_REPO/org/geotools/gt-api/8-SNAPSHOT/gt-api-8-SNAPSHOT-sources.jar"/> >> >> instead of this: >> >> <classpathentry combineaccessrules="false" kind="src" path="/gt-api"/> >> >> I would prefer the latter - is there a reason I should not do it that >> way? Is there a way to have maven or the maven-eclipse-plugin do this >> automatically? > mvn eclipse:eclipse cross links all projects depending on each other > that are generated in a single run of the command. > So you just have to build with eclipse:eclipse from the root instead > of inside a specific module to have all the projects interlinked with > each other > > Cheers > Andrea > ------------------------------------------------------------------------------ WhatsUp Gold - Download Free Network Management Software The most intuitive, comprehensive, and cost-effective network management toolset available today. Delivers lowest initial acquisition cost and overall TCO of any competing solution. http://p.sf.net/sfu/whatsupgold-sd _______________________________________________ Geotools-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geotools-devel
