Files
HamiltonianSnakeAI/build.sh
rattatwinko 22dc79c021
Some checks failed
Maven Build / build (push) Has been cancelled
changed algo. added build
2025-06-04 20:33:40 +02:00

19 lines
504 B
Bash
Executable File
Vendored

#!/bin/bash
# Universal build script for Maven and Gradle projects
echo "Current directory: $(pwd)"
# Check if Maven is installed
if ! command -v mvn &> /dev/null; then
echo "Maven not found, installing..."
sudo apt-get update
sudo apt-get install -y maven
fi
echo "Maven version: $(mvn --version)"
echo "Building Maven project: HamiltonianSnakeAI"
mvn clean package -f "./pom.xml"
echo "Build complete. Build artifacts should be in their respective target/ or build/libs/ directories."