2015-05-02 3 views
0

Я создал файл sonar-project.properties в корне моего проекта. Внутри у меня есть:SonarQube sonar-runner не исключает файл

sonar.sources=WebContent/js 
sonar.exclusions=file:/C:/work/frontend_common/WebContent/js/amp/adv3d/amp3d1Vendor.js 

Я попробовал все варианты sonar.exclusions, что я мог бы найти и думать. Пожалуйста, найдите ниже соответствующие строки журнала, которые демонстрируют, что этот файл все еще включен:

... 
SonarQube Runner 2.4 
... 
07:30:42.340 INFO - Excluded sources: 
07:30:42.340 INFO - file:/C:/work/frontend_common/WebContent/js/amp/adv3d/amp3d1Vendor.js 
... 
07:30:42.356 DEBUG - Language of file 'WebContent/js/amp/adv3d/amp3d1Vendor.js' is detected to be 'js' 
... 
07:30:42.605 WARN - Invalid character encountered in file c:\work\frontend_common\WebContent\js\amp\adv3d\amp3d1Vendor.js at line 1139 for encoding windows-1252. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'. 
... 
07:30:42.668 INFO - 58 files indexed 
07:30:42.668 INFO - 0 files ignored because of inclusion/exclusion patterns 
... 
Caused by: org.sonar.squidbridge.api.AnalysisException: Unable to parse file: c:\work\frontend_common\WebContent\js\amp\adv3d\amp3d1Vendor.js 
... 
Caused by: java.lang.OutOfMemoryError: Java heap space 
... 

ответ

2

Я получил его на работу, используя шаблон **/adv3d/**

Смежные вопросы