@echo off echo ======================================== echo Web Crawler Application echo ======================================== echo. if not exist "target\web-crawler-1.0-SNAPSHOT.jar" ( echo Compiling project... mvn clean package if errorlevel 1 ( echo Compilation failed! pause exit /b 1 ) echo. ) echo Running crawler... echo. java -jar target\web-crawler-1.0-SNAPSHOT.jar %* echo. pause