Exclusion Behavior Question

I am using SonarQube Community Edition on my macOS machine. It is setup locally. I have a code base that includes a bunch of htmls, and I have set the following parameters:

mvn clean compile sonar:sonar \
-Dsonar.projectKey=Test-Project
-Dsonar.projectName=‘Test-Project’
-Dsonar.host.url=http://localhost:9000
-Dsonar.exclusions=‘**/.html’
-Dsonar.scm.disabled=True
-Dsonar.sourceEncoding=UTF-8
-Dsonar.python.version=3
-Dsonar.java.version=8
-Dsonar.token=<VALID_TOKEN>

But in the log, I am still seeing html files being processed. How am I to exclude these files?

I’m closing this as I have discovered the issue wasn’t the exclusions they are working.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.