Files
smartcraft-notifier/build.bat
minster586 8016810631 First build
2025-06-19 18:48:53 -04:00

14 lines
269 B
Batchfile

@echo off
echo Building SmartCraft Notifier...
REM Run Maven clean & package
mvn clean package
IF %ERRORLEVEL% NEQ 0 (
echo Build failed! Check errors above.
pause
exit /b %ERRORLEVEL%
)
echo Build completed! Check the 'target' folder for your .jar
pause