SonarQube Exclude a directory

I am trying to exclude a directory from being analyzed by Sonar. I have the following properties defined in my sonar-project.properties file: sonar.sources=src/java sonar.exclusions=src/java/test/****/*.java The directory structure I have is: src/java/dig src/java/test/dig When I run the sonar-runner I get the following info: INFO – Excluded sources: INFO – src/java/test/**/*.java INFO – Excluded tests: INFO – … Read more