Migrate everything on Gradle

Also added tasks to run the server & client separately
This commit is contained in:
Clément
2025-03-04 15:08:32 +01:00
parent 3115d397a4
commit e536a45266
37 changed files with 453 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import client.ClientConsole;
import java.net.InetSocketAddress;
public class ChatAppClient {
public static void main(String[] args) {
ClientConsole console = new ClientConsole(new InetSocketAddress("localhost", 6665));
try {
console.joinThread();
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("End !");
}
}