tiktoktak/ai-client/build.sh
2026-02-10 14:17:25 +01:00

14 lines
374 B
Bash
Executable file

#!/bin/bash
echo "Building AI Client..."
mvn clean package
if [ $? -eq 0 ]; then
echo "--------------------------------------------------"
echo "Build Successful!"
echo "Run AI Client:"
echo "java -jar target/ai-client-1.0-SNAPSHOT.jar [host] [port]"
echo "--------------------------------------------------"
else
echo "Build Failed!"
exit 1
fi