Fracture RPG is a science fiction themed RPG being written primarilly by WebPigeon as a hobby project.
The source code for the project is packaged using maven (with idea files provided for ease of use). You can use maven to package and run the game.
Unit tests are run automaticlly by Travis.
The project uses maven for depenceny management and to make life easy :).
All commands must be run from project root (dir with pom.xml in)
- To run the game, run the
mvn exec:javacommand. - To run the unit tests, run the
mvn testcommand. - To compile the project into a jar file, run the
mvn packagecommand. - To check for the current technical debt for the project, run
mvn sonar:sonar(needs sonarqube running locally).
A runnable jar file will be avaiable one the project is mature enouph to warrent it.
