You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
slms/scripts/run_gui.bat

28 lines
508 B

@echo off
chcp 65001 >nul
echo ========================================
echo SLMS GUI Application (JavaFX)
echo ========================================
echo.
set JAVA_HOME=E:\2025-2026\GitAIOps\jdk
set PATH=%JAVA_HOME%\bin;%PATH%
echo Compiling project...
call mvn clean compile -q -DskipTests
if %errorlevel% neq 0 (
echo Compilation failed!
pause
exit /b 1
)
echo.
echo Starting GUI application...
echo Please wait for the JavaFX window to open...
echo.
call mvn javafx:run
echo.
pause