Hi, I am using sonarqube(v8.9.10) for my gradle project scanning. I have Installed node(v10.19.0) for javascript/typescript analysis. I have my .js files in app/assets directory. But after scanning
./gradlew sonarqube -Dsonar.projectKey=pvsignal -Dsonar.host.url=http://localhost:9000 -Dsonar.login=f7337813825bf85941732547f7b4ea359d1fd207 -x test --info
Sonarqube is not scanning any files inside assets directory. I can find logs regarding this file
Applying dependency management to configuration 'integrationTestCompileOnly' in project 'grails3-pvsignal'
Applying dependency management to configuration 'integrationTestCompileClasspath' in project 'grails3-pvsignal'
Applying dependency management to configuration 'integrationTestRuntimeOnly' in project 'grails3-pvsignal'
Applying dependency management to configuration 'integrationTestRuntimeClasspath' in project 'grails3-pvsignal'
Applying dependency management to configuration 'agent' in project 'grails3-pvsignal'
Applying dependency management to configuration 'console' in project 'grails3-pvsignal'
Applying dependency management to configuration 'gspCompile' in project 'grails3-pvsignal'
Applying dependency management to configuration 'assets' in project 'grails3-pvsignal'
As you can see I think it is considering assets as one of the libraries and excluding them from scanning. Can you please tell me how can i explicitly add all files in the assets folder to be scanned?