First build

This commit is contained in:
minster586
2025-06-19 18:48:53 -04:00
parent 7001852de5
commit 8016810631
10 changed files with 341 additions and 2 deletions

14
build.bat Normal file
View File

@@ -0,0 +1,14 @@
@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