I am running Spring Boot project which I want to analyze with SonarQube.
in a ~/static/~
folder I have libs (boostrap and JS) that I want to exclude from analyze.
I have tried both ways:
Setting up
project-sonar.properties
file withsonar.exclusions=**/static/**/*
Going from Sonar project local web to Coverage Exlusions also setting
sonar.exclusions=**/static/**/*
But none of the ways seem to be working for me.
I would appreciate any help! :)