Skip to content

How to build

Timofey Bryksin edited this page Aug 4, 2016 · 13 revisions

First, make sure that your development environment is set up and ready.

Configuring Linux environment

Configuring Windows environment

  • download and install [JDK 8] (http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
  • create JAVA_HOME environment variable pointing to JDK install directory (e.g. C:\Program Files\Java\jdk1.8.0_102)
  • add the path to JDK bin subdirectory (e.g. C:\Program Files\Java\jdk1.8.0_102\bin) to PATH environment variable
  • download Apache Maven binary archive (link) and unpack it somewhere (e.g. C:\Users\username\bin\apache-maven-3.3.9)
  • add the path to Maven bin subdirectory (e.g. C:\Users\username\bin\apache-maven-3.3.9\bin) to PATH environment variable

Make sure that JDK and Maven are installed correctly by running command java -version and mvn --version commands.

To build everything run mvn install command in the project root directory.

NOTE: We use IntelliJ IDEA (preferably Ultimate Edition) as an IDE. Other IDEs or even no IDE should be used at your own risk.