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 is achieved in a very inefficient 
fashion in that sub-goals, such as test, are repeated over and over. 
I'm wondering, is there a way to tell Maven to achieve each goal only 
once in a single run?

Michael

-- 
Michael Schuerig                           The more it stays the same,
mailto:[EMAIL PROTECTED]                        The less it changes!
http://www.schuerig.de/michael/      --Spinal Tap, The Majesty of Rock

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to