I am having a Xcode Project for which I am running SonarQube Analyzer. It is getting analyzed successfully for main Project but my problem is Sonar Qube is unable to analyzed dependency projects like Pods or Frameworks. So is there is anyway to include Pods or Frameworks too.
Here is the data of my sonar properties file for which I am using for running Sonar.
sonar.projectKey=PROJECT_IDENTIFIER
sonar.projectName=PROJECT_NAME
sonar.projectVersion=VERSION sonar.sources=./PRODUCT_NAME
sonar.inclusions=**/*.m, **/*.h, **/*.swift
Thanks in advance...