Simple HTTP Server build with Java
- clone this repository
- build with gradle by moving into the repository and using the command
gradle build
- use the command
java -jar build/libs/Server-1.0.jar
with two arguments :-p <port number>
and-d <directory path>
- Tic Tac Toe uses some external dependencies not included in the regular jar
- to run the server with TTT, use the command
gradle fatJar
- run the server with
java -jar build/libs/Server-1.0-all.jar
- from within the directory run
gradle test