sonarqube - Directory excluding in sonar-project.properties file doesn't work (for me) -


i have excluded directory in project properties sonar doesn't exclude it. can me find problem?

sonar.sources=./  sonar.exclusions=./utility/excel/** 

i realized first should have written directory name below exclude folders , file on directory:

 sonar.exclusions=utility/excel/**/* 

second should have used comma separated directory names exclude more 1 directory:

 sonar.exclusions=utility/excel/**/* , utility/mailer/**/* 

Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -