This project is being developed as part of the University of Glasgow MSc in Software Development team project. It consists of a Top Trumps game application written in Java.
The application itself is broken down into two parts: the online mode; and command line mode.
- Select your preferred directory and clone this repo
git clone ${this_repo}
- Enter the project directory
cd uofg-msc-team-project
- Make sure you have
Maven
properly installed in your environment. Then, simply generate the.jar
as illustrated below
mvn package
- Now simply execute the JAR
java -jar target/TopTrumps.jar -c
for the CLI mode
or
java -jar target/TopTrumps.jar -o
for the online mode - If you're using the online mode, open your internet browser and connect to http://localhost:7777/toptrumps to play the game!
- Enjoy!