The build system requires Maven 2 to be installed.
Execute: mvn compile
The class files are compiled in "target/classes/".
Currently there are 5 executable modules:
To make 1 executable jar with all dependencies, do mvn install , go to the respective directory and execute: mvn assembly:assembly The executable jar can be found in "target/*-jar-with-dependencies.jar".
Execute: mvn test
The class files are compiled in "target/test-classes/". Errors are reported in "target/surefire-reports/".
Execute: mvn cobertura:cobertura
The class files are compiled in "target/test-classes/". Errors are reported in "target/surefire-reports/". Coverage information is reported in "target/site/cobertura/index.html".
Execute: mvn clean