Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 786 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 786 Bytes

Maven Build

Install dependencies

This application requires

  • JDK 11 or higher.
  • Maven 3.6.3 or higher
sudo apt update
sudo apt install openjdk-11-jdk maven -y

Build

mvn clean install

Run

java -jar target/ChatServer-1.0.0-jar-with-dependencies.jar <server-id> <config-file-name> 

Ex:

java -jar target/ChatServer-1.0.0-jar-with-dependencies.jar s1 config 

Run with Remote Debugging

java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:8001 -jar target/ChatServer-1.0.0-jar-with-dependencies.jar s1 config