#Configure here general information about the environment, such as SonarQube server connection details for example #No information about specific project should appear here #----- Default SonarQube server sonar.host.url=XXXX sonar.token=XXXX #----- Default source code encoding sonar.sourceEncoding=UTF-8 #----- Default projectkey and name details sonar.projectKey=XXX sonar.projectName=XXX sonar.language=swift sonar.projectBaseDir=. #--- Provide source/test file path below, you can add multiple paths seperated by comma sonar.sources=sources #sonar.tests=Tests #--- Coverage report for sonarqube as per documentation sonar.coverageReportPaths=sonar-reports/sonarqube-generic-coverage.xml sonar.junit.reportPaths=sonar-reports/junit.xml sonar.swift.lizard.report=sonar-reports/lizard-report.xml sonar.scm.provider=git sonar.swift.swiftlint.report=sonar-reports/swiftlint.txt #sonar.swift.swiftLint.reportPaths=sonar-reports/swiftlint.json #---- add/remove source files pattern in below list sonar.exclusions=*.sh,**/*.xml,Pods/**/*,**/*.jar,fastlane/**,**/Mock/**,**/DerivedData/**,DerivedData/** sonar.cpd.exclusions=DerivedData/**