Hi Everyone,
I've been using using sonar at work on a large project with a large number of developers for over two years. I'm on sonar server 5.5. I'm really thankful for the help this community has provided in the past.
I'm using the sonar.exclusions and sonar.coverage.exclusions to exclude some files
eg
sonar.exclusions=**com/org/schemas/**,...
sonar.coverage.exclusions=src/**/com/org/AccountApiController.java,**/com/org/AvailableApiController.java,**/...
These get loaded into the exclusion lists
INFO: Excluded sources for coverage:
...
INFO: src/**/com/org/AccountApiController.java
INFO: **/com/org/AvailableApiController.java
...
10:50:55.518 INFO: Excluded sources:
10:50:55.518 INFO: **com/org/schemas/**
...
But are then ignored.
10:50:57.986 INFO: 4717 files indexed
10:50:57.988 INFO: 0 files ignored because of inclusion/exclusion patterns
My question is - Why aren't my coverage exclusions working?
Cheers
Julian