Building Install Packages

Debian packages and RPMs can be built from this project using Make, for example:

make deb
make rpm

Building JARs from source

The easiest way to build is to use the following make command:

make package

To build Reaper without rebuilding the UI, run the following command :

mvn clean package

To only regenerate the UI (requires npm and bower) :

mvn generate-sources

To rebuild both the UI and Reaper :

mvn clean package

Building Docker Image

mvn clean package docker:build

Building Using Docker

To simplify the build toolchain it’s possible to build everything using Docker itself. See the Docker section for details.