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
Post a Comment