master upload

This commit is contained in:
minster586
2025-06-24 03:06:30 -04:00
parent d14824f12d
commit 95ee183b38
11 changed files with 390 additions and 2 deletions

15
build.bat Normal file
View File

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