Java 8
Maven
JUNIT
junit.jupiter
Clone/download the project from github
Open the terminal into the phase2 folder where the pom.xml file is located. To prepare the game for java to run, call the following command.
mvn package.
This will compile the code, run tests, and package the game into a jar. To run the game, enter the the following command.
java -cp target/phase2-1.0.jar group10.App.
Testing To test the game, run the following command in the terminal open to the phase2 directory.
mvn test