Hello there,
I am trying to avoid sonar scan for third party packages/code for some reasons in cloud manager CI/CD pipeline.
Tried configuring below configuration in root pom file.
<properties>
....
...
<sonar.exclusions>
**/apps/acs-commons/**,
**/apps/acs-commons*/**,
**/ui.apps/src/main/content/jcr_root/apps/acs-commons/**,
**/ui.content/src/main/content/jcr_root/apps/acs-commons/**,
**/core/src/main/java/com/adobe/acs/**,
**/etc/acs-commons/**
</sonar.exclusions>
</properties>
But this dint help me. Any thoughts ?. is it possible to override the pipeline so that our configuration gets priority for scanning ? or its not possible at all to avoid this scanning ?