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.
24 lines
447 B
24 lines
447 B
@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
|
|
|