Skip to content
joesephz edited this page May 18, 2012 · 2 revisions

Obtaining Jagger

Distribution Download

Jagger is distributed as a zip archive that contains Jagger binaries, configuration, and all the dependencies. Distribution .zip could be retrieved from GitHub.

Available distributions:

Building from Sources

If you are going to customize or extend Jagger beyond standard configuration tweaks you should deal with its sources. It's easy to checkout and build the project:

Checkout Jagger

Make sure that git client, Maven 2, and Oracle JDK 1.6 are installed. Create your Jagger home directory (a directory where code base will be downloaded to) and set it as an active directory:

mkdir JAGGER_HOME
cd JAGGER_HOME

Checkout code using the following command:

git clone git@github.com:griddynamics/jagger.git

Build Jagger

cd JAGGER_HOME/
mvn clean install

After that check JAGGER_HOME/distribution/target/jagger-distribution-$VERSION$-full.zip is available.

Clone this wiki locally