Skip to content

Instantly share code, notes, and snippets.

@akollegger
Created February 12, 2009 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akollegger/62776 to your computer and use it in GitHub Desktop.
Save akollegger/62776 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Gather Features - checkout and build all
mkdir features
cd features
# gather-common: checkout, build and install into local maven repository
git clone git://github.com/akollegger/gather-common.git
cd gather-common
mvn clean install -DperformRelease=true
cd ..
# gather-archiver: checkout, build and install into local maven repository
git clone git://github.com/akollegger/gather-archiver.git
cd gather-archiver
mvn clean install -DperformRelease=true
cd ..
# gather-forms: checkout, build and install into local maven repository
# (notice a pattern here?)
git clone git://github.com/akollegger/gather-forms.git
cd gather-forms
mvn clean install -DperformRelease=true
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment