public code v2

This commit is contained in:
Francisco Jesús Martínez Mimbrera
2026-05-23 00:39:14 +02:00
parent 759a8968a2
commit 40dda44902
4 changed files with 141 additions and 75 deletions
+15 -7
View File
@@ -1,10 +1,18 @@
:: Hacer los SET
@echo off
:: Compila Flintstones en Docker (no hace falta tener Maven ni Java 11 local).
setlocal
:: Actualizar POM
set APP_DIR=releng\flintstones.application.product\target\products
:: Build
mvn clean install
echo =^> Compilando Flintstones con Maven 3.8 + JDK 11 en Docker...
docker compose run --rm build
if errorlevel 1 (
echo ERROR: la compilacion ha fallado.
exit /b 1
)
pause
pause
pause
echo.
echo =^> Build completado. Productos en %APP_DIR%\
dir /b "%APP_DIR%\*.zip" 2>nul
endlocal