We have stored our PL/SQL files with .sql and .pak (for packages) extensions in bitbucket and we are trying to run sonarqube scanner on these files but the scanner is not taking .pak files into consideration while scanning.
the sonar-project.properties file looks like
sonar.projectKey=XYZ
sonar.projectName=XYZ
sonar.projectDescription=PL/SQL Demo
sonar.sources=.
sonar.inclusions=**/sql/*.sql,**/package/*.pak
sonar.language=plsql
This is scanning .sql files but not .pak files.