Hi,
Thanks for the log. A few things look strange to me:
Unless this is the result of an uneven redaction, your exclusions don’t seem to match up with where analysis is running:
base dir:
C:\source\application1\source
vs exclusions
C:/autoscan_source/Application1/source/
C:/autoscan_source/source_VOS2/source
Both the path segments and the casing(!) don’t match. And especially since you’re specifying full paths, if they don’t match then it’s natural that nothing is excluded.
Also, I took a 2nd look at this pattern: C:/autoscan_source/source_VOS2/source/**/**/**/*.html
The **
wildcard matches 0-n directories. So **/**/**
is not helping.
I suggest you rewrite your exclusions (at minimum) to something like:
**/test/**/*, **/mock/*, **/source_VOS2/source/**/*.html
Note that you may want to make that ‘mock’ one **/mock/**/*
unless all the files to be ignored are directly under the mock
directory.
HTH,
Ann