Coalescing sub-goals

2005-02-22 Thread Michael Schuerig
In my maven.xml I have defined a goal like this goal name=stage-upload attainGoal name=clean/ attainGoal name=dist:deploy-snapshot/ attainGoal name=jar:deploy-snapshot/ attainGoal name=site:generate/ attainGoal name=site:fsdeploy/ /goal The result is what I want, but it

Re: Coalescing sub-goals

2005-02-22 Thread Brett Porter
use prereqs instead of attainGoal. (this won't help when one of the goals uses attainGoal though). For tests specifically, you can run the tests first, then set maven.test.skip before the later goals. - Brett On Tue, 22 Feb 2005 23:20:30 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: In