tiktoktak/client/build.sh
2026-02-10 13:17:43 +01:00

14 lines
389 B
Bash
Executable file

#!/bin/bash
echo "Building TicTacToe Standalone Client..."
mvn clean package
if [ $? -eq 0 ]; then
echo "--------------------------------------------------"
echo "Build Successful!"
echo "You can run the client with:"
echo "java -jar target/client-1.0-SNAPSHOT.jar"
echo "--------------------------------------------------"
else
echo "Build Failed!"
exit 1
fi