Files
sc-ntfy-plugin/build.bat
2025-06-24 03:06:30 -04:00

15 lines
366 B
Batchfile

@echo off
REM === Run Maven clean and package ===
echo Building NTFYNotifier with Maven...
mvn clean package
REM === Check if the build succeeded ===
IF EXIST target\NTFYNotifier-1.0.jar (
echo.
echo ✅ Build successful! JAR created at: target\NTFYNotifier-1.0.jar
) ELSE (
echo.
echo ❌ Build failed. Please check for compilation errors.
)
pause