You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Douglas Ferguson <do...@epsiia.com> on 2006/09/01 22:53:37 UTC

Scripts for building multiple projects

I just wrote a script to build a couple of modules in a specific order,
for dev purposes.

 

Once I did this, I thought that it might be handy to make it an ant
script.

Anybody call mvn from ant before? Just wondering if there are any tasks
for this already?

 

Here�s my shell script�

 

pushd framework

mvn clean install

popd

pushd ev

mvn clean install

popd

pushd custom-builds/ev-builds/di

mvn clean compile war:war cargo:undeploy cargo:deploy -Premote.localhost

popd