initial test
All checks were successful
Gradle Build / build (push) Successful in 10m28s

This commit is contained in:
2025-05-20 10:32:38 +02:00
commit d94dc07a21
13 changed files with 1088 additions and 0 deletions

14
build.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Universal build script for Maven and Gradle projects
echo "Current directory: $(pwd)"
# Check for Gradle or Gradle Wrapper
echo "Building Gradle project using wrapper: gradletest"
cd "."
chmod +x ./gradlew
./gradlew build
cd - > /dev/null
echo "Build complete. Build artifacts should be in their respective target/ or build/libs/ directories."