Hi Pablo, > I would like to have another project,i.e., projectD aimed to launch > building > of projectA, projectB and projectC, and finally pack together all the > artifacts generated within built projects. > > Is this possible or am I far from getting it to work with Maven?
Just create a master pom.xml and put the following lines in it: <modules> <module>projectA</module> <module>projectB</module> <module>projectC</module> </modules> When you execute "mvn package" or whatever on your master pom, Maven should build all of your subprojects. Regards Thorsten --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
