14 lines
318 B
Batchfile
14 lines
318 B
Batchfile
@echo off
|
|
echo Building SmartCraftNotifier...
|
|
|
|
:: Ensure Maven is installed and on your PATH
|
|
mvn clean package
|
|
|
|
:: Check if build succeeded
|
|
if exist target\SmartCraftNotifier.jar (
|
|
echo Build successful! JAR located at: target\SmartCraftNotifier.jar
|
|
) else (
|
|
echo Build failed. Check for errors above.
|
|
)
|
|
|
|
pause |