Sonar.coverage.exclusions not excluding too much

Hi,

Thanks for providing everything I asked for! Your exclusions pattern tells the tail. ** means 0-n directories. Your patterns don’t exclude any files. For that you want:

sonar.coverage.exclusions=**/test/**/*.*, **/api/**/*.*, **/queue/**/*.*, **/model/**/*.*

Note that the pattern update I’ve made assumes you’re using file extensions.

 
HTH,
Ann