Clean project: remove test files, debug logs, and add documentation

This commit is contained in:
dahoud
2025-10-05 13:41:33 +00:00
parent 96a17eadbd
commit 291847924c
438 changed files with 65754 additions and 32713 deletions

View File

@@ -0,0 +1,20 @@
@echo off
echo Testing compilation...
mvn clean compile -q
if %ERRORLEVEL% neq 0 (
echo COMPILATION FAILED
exit /b 1
) else (
echo COMPILATION SUCCESS
)
echo Testing test compilation...
mvn test-compile -q
if %ERRORLEVEL% neq 0 (
echo TEST COMPILATION FAILED
exit /b 1
) else (
echo TEST COMPILATION SUCCESS
)
echo All compilation tests passed!