Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Building and Compiling

Mike Jensen edited this page Jun 1, 2015 · 1 revision

Ambush uses gradle to handle it's building, unit testing, and javadoc generation. In addition we check the gradle wrapper in with the project so that you don't need to download/install anything if you don't currently have gradle installed. This should make compiling on your own system very easy.

  • Checkout the latest code from git:

git clone https://github.com/threadly/ambush.git

  • You can compile (and run unit tests) simply by running:

./gradlew build the generated jar file is then located at build/libs/

  • javadoc can be generated by running:

./gradlew javadoc Java docs are then located at build/docs/javadoc/

If on windows you should be able to use gradlew.bat as a replacement for the gradlew script.

Clone this wiki locally