15 lines
366 B
Batchfile
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 |