Almost done

2007-07-11 Thread Jon Strayer
I'm converting from Maven 1.0 (with a custom plugin for deploying tarballs) to Maven 2.0. I previously discovered that this set of comands does what my M1 plugin did: mvn clean package appassembler:assemble assembly:assembly wagon:deploy That is, it collects all the dependencies, creates a run

Re: Almost done

2007-07-11 Thread Dan Tran
mvn scm:bootstrap checkout maven-scm-plugin On 7/11/07, Jon Strayer [EMAIL PROTECTED] wrote: I'm converting from Maven 1.0 (with a custom plugin for deploying tarballs) to Maven 2.0. I previously discovered that this set of comands does what my M1 plugin did: mvn clean package

Re: Almost done

2007-07-11 Thread Steven Rowe
Hi Jon, release:perform mostly does what you want - it checks out a clean working copy from the tag created by release:prepare, and then does the stuff you tell it to. So, you can tell it to do stuff like you want. Take a look at the goals parameter to the maven-release-plugin: