Hi, There are probably many ways that developers have created there own scheme, but what I did was to create a 'builds' directory on the same level as the apps(I'll call them projects) where common project.xml, maven.xml, and project.properties files go and are extended within each project's own maven files. In that same builds directory, I created a subdirectory for the important apps with a project.xml with only the project name within it so I could just checkout the builds directory(or keep it local) and run checkouts and multiproject goals against them.
This may be different than what you are looking for. In our case, each project is a standalone project as well as a potential dependency of another project. I've created some plugins and maven goals to deal with creating multiproject.includes on the fly based on dependencies, etc. I hope this helps... Eric On Thu, 2005-03-03 at 09:30 -0500, Maven Users List wrote: > hi .. > > > its my duty to migrate from ant to maven .. > > > we have the following source-structure > > > com > | -- foo > | -- app1 > | -- app2 > | -- app3 > > > i created three subprojects for each of the apps ... > the next thing i would like to do is to tell maven in the project.xml > that > it should only checkout the specific files in the appX area. > > > how do i achieve this ??? > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
