blob: 8f097539979a889b6fe94cad2769cc97a1f59106 [file] [log] [blame]
@echo off
::----------------------------------------------------------------------
:: IntelliJ IDEA inspections for checkstyle.
::
:: Example:
:: SET IDEA_PATH=C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2017.2.1\bin\idea.bat
:: .ci\idea_inspection.bat
::----------------------------------------------------------------------
SET PROJECT_DIR=%CD%\
SET INSPECTIONS_PATH=%CD%\config\intellij-idea-inspections.xml
SET RESULTS_DIR=%CD%\target\inspection-results
SET NOISE_LVL=v1
SET IDEA_LOCATION=
SET IDEA_PROPERTIES=%CD%\config\intellij-idea-inspections.properties
::Check IDEA_PATH env variable
IF EXIST %IDEA_PATH% SET (
SET IDEA_LOCATION=%IDEA_PATH%
goto run
) ELSE (
echo IDEA_PATH variable not found.
)
::Try to search in path
FOR /f "delims=" %%i IN ('"where idea.bat"') DO SET IDEA_LOCATION="%%i"
if [%IDEA_LOCATION%] NEQ [] (
goto run
) ELSE (
echo IntelliJ IDEA was not found in path.
exit /b
)
:run
mkdir %RESULTS_DIR%
del %RESULTS_DIR%\*.* /s /q
mkdir .idea\scopes
copy config\intellij-idea-inspection-scope.xml .idea\scopes
::Execute compilation of Checkstyle to generate all source files
mvn compile
::Launch inspections
"%IDEA_LOCATION%" inspect %PROJECT_DIR% %INSPECTIONS_PATH% %RESULTS_DIR% -%NOISE_LVL%